Fix bug in api extension

This commit is contained in:
oobabooga 2023-04-22 17:33:36 -03:00
parent b992c9236a
commit 7ff645899e

View file

@ -73,7 +73,7 @@ class Handler(BaseHTTPRequestHandler):
response = json.dumps({
'results': [{
'text': answer if shared.args.is_chat() else answer[len(prompt):]
'text': answer if shared.is_chat() else answer[len(prompt):]
}]
})
self.wfile.write(response.encode('utf-8'))