test
This commit is contained in:
parent
2fed87d340
commit
4c2c164ce1
|
@ -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']:
|
||||
|
|
|
@ -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']:
|
||||
|
|
Reference in New Issue