mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 22:23:56 +01:00
62 lines
1.3 KiB
Python
62 lines
1.3 KiB
Python
import json
|
|
import string
|
|
import random
|
|
import asyncio
|
|
|
|
from rich import print
|
|
|
|
class CompletionStart:
|
|
"""Beinning of a chat"""
|
|
|
|
class CompletionStop:
|
|
"""End of a chat"""
|
|
|
|
async def create_chat_id() -> str:
|
|
chars = string.ascii_letters + string.digits
|
|
chat_id = ''.join(random.choices(chars, k=32))
|
|
|
|
return f'chatcmpl-{chat_id}'
|
|
|
|
def create_chat_chunk(chat_id: str, model: str, content=None) -> dict:
|
|
content = content or {}
|
|
|
|
delta = {}
|
|
|
|
if content:
|
|
delta = {
|
|
'content': content
|
|
}
|
|
|
|
if content == CompletionStart:
|
|
delta = {
|
|
'role': 'assistant'
|
|
}
|
|
|
|
if content == CompletionStop:
|
|
delta = {}
|
|
|
|
chunk = {
|
|
'id': chat_id,
|
|
'object': 'chat.completion.chunk',
|
|
'created': 0,
|
|
'model': model,
|
|
'choices': [
|
|
{
|
|
'delta': delta,
|
|
'index': 0,
|
|
'finish_reason': 'stop' if content == CompletionStop else None
|
|
}
|
|
],
|
|
}
|
|
|
|
return f'data: {json.dumps(chunk)}\n\n'
|
|
|
|
if __name__ == '__main__':
|
|
demo_chat_id = asyncio.run(create_chat_id())
|
|
print(demo_chat_id)
|
|
print(asyncio.run(create_chat_chunk(
|
|
model='gpt-4',
|
|
content='Hello',
|
|
chat_id=demo_chat_id,
|
|
)))
|