mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 18:33:57 +01:00
sleep deprivation caused me to be not productive today
This commit is contained in:
parent
160ceb5efd
commit
ea35674853
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -1,7 +1,11 @@
|
||||||
|
*.log.json
|
||||||
|
/logs
|
||||||
|
/log
|
||||||
|
.log
|
||||||
|
*.log.*
|
||||||
|
|
||||||
providers/*
|
providers/*
|
||||||
providers/
|
providers/
|
||||||
chat_providers/*
|
|
||||||
chat_providers/
|
|
||||||
|
|
||||||
secret/*
|
secret/*
|
||||||
secret/
|
secret/
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
max-credits: 100001
|
max-credits: 100001
|
||||||
|
max-credits-owner: 694201337
|
||||||
start-credits: 1000
|
start-credits: 1000
|
||||||
|
|
||||||
costs:
|
costs:
|
||||||
|
|
|
@ -12,7 +12,13 @@ def _get_mongo(collection_name: str):
|
||||||
return AsyncIOMotorClient(os.getenv('MONGO_URI'))['nova-core'][collection_name]
|
return AsyncIOMotorClient(os.getenv('MONGO_URI'))['nova-core'][collection_name]
|
||||||
|
|
||||||
async def log_api_request(user: dict, incoming_request, target_url: str):
|
async def log_api_request(user: dict, incoming_request, target_url: str):
|
||||||
|
payload = {}
|
||||||
|
|
||||||
|
try:
|
||||||
payload = await incoming_request.json()
|
payload = await incoming_request.json()
|
||||||
|
except Exception as exc:
|
||||||
|
if 'JSONDecodeError' in str(exc):
|
||||||
|
pass
|
||||||
|
|
||||||
last_prompt = None
|
last_prompt = None
|
||||||
if 'messages' in payload:
|
if 'messages' in payload:
|
||||||
|
|
|
@ -11,3 +11,10 @@ def error(code: int, message: str, tip: str) -> starlette.responses.Response:
|
||||||
}}
|
}}
|
||||||
|
|
||||||
return starlette.responses.Response(status_code=code, content=json.dumps(info))
|
return starlette.responses.Response(status_code=code, content=json.dumps(info))
|
||||||
|
|
||||||
|
def yield_error(code: int, message: str, tip: str) -> str:
|
||||||
|
return json.dumps({
|
||||||
|
'code': code,
|
||||||
|
'message': message,
|
||||||
|
'tip': tip
|
||||||
|
})
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
import random
|
import random
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
import chat_providers
|
import providers
|
||||||
|
|
||||||
provider_modules = [
|
provider_modules = [
|
||||||
# chat_providers.twa,
|
# providers.twa,
|
||||||
# chat_providers.quantum,
|
# providers.quantum,
|
||||||
chat_providers.churchless,
|
providers.churchless,
|
||||||
chat_providers.closed,
|
providers.closed,
|
||||||
chat_providers.closed4
|
providers.closed4
|
||||||
]
|
]
|
||||||
|
|
||||||
def _get_module_name(module) -> str:
|
def _get_module_name(module) -> str:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import os
|
import os
|
||||||
import yaml
|
|
||||||
import json
|
import json
|
||||||
|
import dhooks
|
||||||
import asyncio
|
import asyncio
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import starlette
|
import starlette
|
||||||
|
@ -13,7 +13,7 @@ import proxies
|
||||||
import load_balancing
|
import load_balancing
|
||||||
|
|
||||||
from db import logs, users, stats
|
from db import logs, users, stats
|
||||||
from helpers import network, chat
|
from helpers import network, chat, errors
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
|
|
||||||
|
@ -27,9 +27,6 @@ DEMO_PAYLOAD = {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
with open('config/credits.yml', encoding='utf8') as f:
|
|
||||||
max_credits = yaml.safe_load(f)['max-credits']
|
|
||||||
|
|
||||||
async def stream(
|
async def stream(
|
||||||
path: str='/v1/chat/completions',
|
path: str='/v1/chat/completions',
|
||||||
user: dict=None,
|
user: dict=None,
|
||||||
|
@ -42,12 +39,16 @@ async def stream(
|
||||||
|
|
||||||
payload = payload or DEMO_PAYLOAD
|
payload = payload or DEMO_PAYLOAD
|
||||||
is_chat = False
|
is_chat = False
|
||||||
|
is_stream = payload.get('stream', False)
|
||||||
|
|
||||||
if 'chat/completions' in path:
|
if 'chat/completions' in path:
|
||||||
is_chat = True
|
is_chat = True
|
||||||
chat_id = await chat.create_chat_id()
|
|
||||||
model = payload['model']
|
model = payload['model']
|
||||||
|
|
||||||
|
|
||||||
|
if is_chat and is_stream:
|
||||||
|
chat_id = await chat.create_chat_id()
|
||||||
|
|
||||||
yield chat.create_chat_chunk(
|
yield chat.create_chat_chunk(
|
||||||
chat_id=chat_id,
|
chat_id=chat_id,
|
||||||
model=model,
|
model=model,
|
||||||
|
@ -60,25 +61,38 @@ async def stream(
|
||||||
content=None
|
content=None
|
||||||
)
|
)
|
||||||
|
|
||||||
for _ in range(5):
|
for _ in range(3):
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try:
|
||||||
if is_chat:
|
if is_chat:
|
||||||
target_request = await load_balancing.balance_chat_request(payload)
|
target_request = await load_balancing.balance_chat_request(payload)
|
||||||
else:
|
else:
|
||||||
target_request = await load_balancing.balance_organic_request({
|
target_request = await load_balancing.balance_organic_request({
|
||||||
|
'method': incoming_request.method,
|
||||||
'path': path,
|
'path': path,
|
||||||
'payload': payload,
|
'payload': payload,
|
||||||
'headers': headers
|
'headers': headers,
|
||||||
|
'cookies': incoming_request.cookies
|
||||||
})
|
})
|
||||||
|
except ValueError as exc:
|
||||||
|
webhook = dhooks.Webhook(os.getenv('DISCORD_WEBHOOK__API_ISSUE'))
|
||||||
|
|
||||||
|
webhook.send(content=f'API Issue: **`{exc}`**\nhttps://i.imgflip.com/7uv122.jpg')
|
||||||
|
yield errors.yield_error(
|
||||||
|
500,
|
||||||
|
'Sorry, the API has no working keys anymore.',
|
||||||
|
'The admins have been messaged automatically.'
|
||||||
|
)
|
||||||
|
|
||||||
for k, v in target_request.get('headers', {}).items():
|
for k, v in target_request.get('headers', {}).items():
|
||||||
headers[k] = v
|
headers[k] = v
|
||||||
|
|
||||||
async with aiohttp.ClientSession(connector=proxies.default_proxy.connector) as session:
|
json.dump(target_request, open('api.log.json', 'w'), indent=4)
|
||||||
|
|
||||||
|
async with aiohttp.ClientSession(connector=proxies.default_proxy.connector) as session:
|
||||||
try:
|
try:
|
||||||
async with session.request(
|
async with session.request(
|
||||||
method=target_request.get('method', 'POST'),
|
method=target_request.get('method', 'POST'),
|
||||||
|
@ -94,6 +108,7 @@ async def stream(
|
||||||
|
|
||||||
timeout=aiohttp.ClientTimeout(total=float(os.getenv('TRANSFER_TIMEOUT', '120'))),
|
timeout=aiohttp.ClientTimeout(total=float(os.getenv('TRANSFER_TIMEOUT', '120'))),
|
||||||
) as response:
|
) as response:
|
||||||
|
print(5)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
@ -114,27 +129,43 @@ async def stream(
|
||||||
'$inc': {'credits': -credits_cost}
|
'$inc': {'credits': -credits_cost}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
print(6)
|
||||||
|
|
||||||
|
if is_stream:
|
||||||
try:
|
try:
|
||||||
async for chunk in response.content.iter_any():
|
async for chunk in response.content.iter_any():
|
||||||
|
send = False
|
||||||
chunk = f'{chunk.decode("utf8")}\n\n'
|
chunk = f'{chunk.decode("utf8")}\n\n'
|
||||||
|
chunk = chunk.replace(os.getenv('MAGIC_WORD', 'novaOSScheckKeyword'), payload['model'])
|
||||||
|
# chunk = chunk.replace(os.getenv('MAGIC_USER_WORD', 'novaOSSuserKeyword'), user['_id'])
|
||||||
|
|
||||||
if chunk.strip():
|
if not chunk.strip():
|
||||||
if is_chat:
|
send = False
|
||||||
if target_request['module'] == 'twa':
|
|
||||||
|
if is_chat and '{' in chunk:
|
||||||
data = json.loads(chunk.split('data: ')[1])
|
data = json.loads(chunk.split('data: ')[1])
|
||||||
|
send = True
|
||||||
|
print(data)
|
||||||
|
|
||||||
if data.get('text'):
|
if target_request['module'] == 'twa' and data.get('text'):
|
||||||
chunk = chat.create_chat_chunk(
|
chunk = chat.create_chat_chunk(
|
||||||
chat_id=chat_id,
|
chat_id=chat_id,
|
||||||
model=model,
|
model=model,
|
||||||
content=['text']
|
content=['text']
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if not data['choices'][0]['delta']:
|
||||||
|
send = False
|
||||||
|
|
||||||
|
if data['choices'][0]['delta'] == {'role': 'assistant'}:
|
||||||
|
send = False
|
||||||
|
|
||||||
|
if send:
|
||||||
yield chunk
|
yield chunk
|
||||||
|
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
if 'Connection closed' in str(exc):
|
if 'Connection closed' in str(exc):
|
||||||
print('connection closed')
|
print('connection closed: ', exc)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not demo_mode:
|
if not demo_mode:
|
||||||
|
@ -151,12 +182,13 @@ async def stream(
|
||||||
|
|
||||||
break
|
break
|
||||||
|
|
||||||
except ProxyError:
|
except ProxyError as exc:
|
||||||
print('proxy error')
|
print('proxy error')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
print(3)
|
print(3)
|
||||||
if is_chat:
|
|
||||||
|
if is_chat and is_stream:
|
||||||
chat_chunk = chat.create_chat_chunk(
|
chat_chunk = chat.create_chat_chunk(
|
||||||
chat_id=chat_id,
|
chat_id=chat_id,
|
||||||
model=model,
|
model=model,
|
||||||
|
@ -166,5 +198,9 @@ async def stream(
|
||||||
|
|
||||||
yield 'data: [DONE]\n\n'
|
yield 'data: [DONE]\n\n'
|
||||||
|
|
||||||
|
if not is_stream:
|
||||||
|
json_response = await response.json()
|
||||||
|
yield json_response.encode('utf8')
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
asyncio.run(stream())
|
asyncio.run(stream())
|
||||||
|
|
|
@ -87,7 +87,7 @@ async def handle(incoming_request):
|
||||||
|
|
||||||
payload['user'] = str(user['_id'])
|
payload['user'] = str(user['_id'])
|
||||||
|
|
||||||
if not payload.get('stream') is True:
|
if 'chat/completions' in path and not payload.get('stream') is True:
|
||||||
payload['stream'] = False
|
payload['stream'] = False
|
||||||
|
|
||||||
return starlette.responses.StreamingResponse(
|
return starlette.responses.StreamingResponse(
|
||||||
|
@ -99,5 +99,5 @@ async def handle(incoming_request):
|
||||||
input_tokens=input_tokens,
|
input_tokens=input_tokens,
|
||||||
incoming_request=incoming_request,
|
incoming_request=incoming_request,
|
||||||
),
|
),
|
||||||
media_type='text/event-stream'
|
media_type='text/event-stream' if payload.get('stream', False) else 'application/json'
|
||||||
)
|
)
|
||||||
|
|
|
@ -42,7 +42,7 @@ def test_api(model: str=MODEL, messages: List[dict]=None) -> dict:
|
||||||
|
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'Authorization': 'Bearer ' + api_key
|
'Authorization': 'Bearer ' + closedai.api_key
|
||||||
}
|
}
|
||||||
|
|
||||||
json_data = {
|
json_data = {
|
||||||
|
@ -52,7 +52,7 @@ def test_api(model: str=MODEL, messages: List[dict]=None) -> dict:
|
||||||
}
|
}
|
||||||
|
|
||||||
response = httpx.post(
|
response = httpx.post(
|
||||||
url=f'{api_endpoint}/v1/chat/completions',
|
url=f'{api_endpoint}/chat/completions',
|
||||||
headers=headers,
|
headers=headers,
|
||||||
json=json_data,
|
json=json_data,
|
||||||
timeout=20
|
timeout=20
|
||||||
|
@ -64,9 +64,6 @@ def test_api(model: str=MODEL, messages: List[dict]=None) -> dict:
|
||||||
def test_library():
|
def test_library():
|
||||||
"""Tests if the api_endpoint is working with the Python library."""
|
"""Tests if the api_endpoint is working with the Python library."""
|
||||||
|
|
||||||
closedai.api_base = api_endpoint
|
|
||||||
closedai.api_key = api_key
|
|
||||||
|
|
||||||
completion = closedai.ChatCompletion.create(
|
completion = closedai.ChatCompletion.create(
|
||||||
model=MODEL,
|
model=MODEL,
|
||||||
messages=MESSAGES,
|
messages=MESSAGES,
|
||||||
|
@ -79,23 +76,27 @@ def test_library():
|
||||||
except:
|
except:
|
||||||
print('-')
|
print('-')
|
||||||
|
|
||||||
|
def test_library_moderation():
|
||||||
|
return closedai.Moderation.create("I wanna kill myself, I wanna kill myself; It's all I hear right now, it's all I hear right now")
|
||||||
|
|
||||||
def test_all():
|
def test_all():
|
||||||
"""Runs all tests."""
|
"""Runs all tests."""
|
||||||
|
|
||||||
# print(test_server())
|
# print(test_server())
|
||||||
# print(test_api())
|
print(test_api())
|
||||||
print(test_library())
|
# print(test_library())
|
||||||
|
# print(test_library_moderation())
|
||||||
|
|
||||||
|
|
||||||
def test_api(model: str=MODEL, messages: List[dict]=None) -> dict:
|
def test_api_moderation(model: str=MODEL, messages: List[dict]=None) -> dict:
|
||||||
"""Tests an API api_endpoint."""
|
"""Tests an API api_endpoint."""
|
||||||
|
|
||||||
headers = {
|
headers = {
|
||||||
'Authorization': 'Bearer ' + api_key
|
'Authorization': 'Bearer ' + closedai.api_key
|
||||||
}
|
}
|
||||||
|
|
||||||
response = httpx.get(
|
response = httpx.get(
|
||||||
url=f'{api_endpoint}/v1/usage',
|
url=f'{api_endpoint}/moderations',
|
||||||
headers=headers,
|
headers=headers,
|
||||||
timeout=20
|
timeout=20
|
||||||
)
|
)
|
||||||
|
@ -104,9 +105,8 @@ def test_api(model: str=MODEL, messages: List[dict]=None) -> dict:
|
||||||
return response.text
|
return response.text
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# api_endpoint = 'https://api.nova-oss.com'
|
api_endpoint = 'https://alpha-api.nova-oss.com/v1'
|
||||||
api_endpoint = 'https://alpha-api.nova-oss.com'
|
closedai.api_base = api_endpoint
|
||||||
api_key = os.getenv('TEST_NOVA_KEY')
|
closedai.api_key = os.getenv('TEST_NOVA_KEY')
|
||||||
# test_all()
|
|
||||||
|
|
||||||
print(test_api())
|
test_all()
|
||||||
|
|
Loading…
Reference in a new issue