"""Module for transferring requests to ClosedAI API""" import os import json import logging import starlette import netclient from dotenv import load_dotenv from helpers import requesting load_dotenv() # log to "api.log" file logging.basicConfig( filename='api.log', level=logging.DEBUG, format='%(asctime)s %(levelname)s %(name)s %(message)s' ) logging.info('API started') async def handle_api_request(incoming_request, target_endpoint: str=''): """Transfer a streaming response from the incoming request to the target endpoint""" if not target_endpoint: target_endpoint = os.getenv('CLOSEDAI_ENDPOINT') target_url = f'{target_endpoint}{incoming_request.url.path}' logging.info('TRANSFER %s -> %s', incoming_request.url.path, target_url) if target_url.endswith('/v1'): return starlette.responses.Response(status_code=200, content='200. /v1 is the API endpoint root path.') if incoming_request.headers.get('Authorization') != f'Bearer {os.getenv("DEMO_AUTH")}': return starlette.responses.Response(status_code=403, content='Invalid API key') try: payload = await incoming_request.json() except json.decoder.JSONDecodeError: payload = {} if 'temperature' in payload or 'functions' in payload: target_provider = 'closed' request = requesting.Request( url=target_url, payload=payload, method=incoming_request.method, ) return starlette.responses.StreamingResponse( content=netclient.stream_closedai_request(request) )