mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 23:13:57 +01:00
36 lines
829 B
Python
36 lines
829 B
Python
from .helpers import utils
|
|
|
|
AUTH = True
|
|
ORGANIC = False
|
|
CONTEXT = True
|
|
STREAMING = True
|
|
MODERATIONS = False
|
|
ENDPOINT = 'https://api.openai.com'
|
|
MODELS = utils.GPT_4_32K
|
|
|
|
async def get_key() -> str:
|
|
return await utils.random_secret_for('closed432')
|
|
|
|
async def chat_completion(**kwargs):
|
|
payload = kwargs
|
|
key = await get_key()
|
|
|
|
return {
|
|
'method': 'POST',
|
|
'url': f'{ENDPOINT}/v1/chat/completions',
|
|
'payload': payload,
|
|
'headers': {
|
|
'Authorization': f'Bearer {key}'
|
|
},
|
|
'provider_auth': f'closed432>{key}'
|
|
}
|
|
|
|
async def organify(request: dict) -> dict:
|
|
key = await get_key()
|
|
|
|
request['url'] = ENDPOINT + request['path']
|
|
request['headers']['Authorization'] = f'Bearer {key}'
|
|
request['provider_auth'] = f'closed432>{key}'
|
|
|
|
return request
|