This commit is contained in:
Cyberes 2023-10-17 12:29:12 -06:00
parent 2fed87d340
commit 4c2c164ce1
2 changed files with 2 additions and 0 deletions

View File

@ -120,6 +120,7 @@ def openai_chat_completions(model_name=None):
timestamp = int(stream_index.decode('utf-8').split('-')[0])
data = ujson.loads(item[b'data'])
if data['error']:
print(data['error'])
yield 'data: [DONE]\n\n'
return
elif data['new']:

View File

@ -164,6 +164,7 @@ def openai_completions(model_name=None):
timestamp = int(stream_index.decode('utf-8').split('-')[0])
data = ujson.loads(item[b'data'])
if data['error']:
print(data['error'])
yield 'data: [DONE]\n\n'
return
elif data['new']: