Spaces:
Sleeping
Sleeping
Commit
·
492d4b7
1
Parent(s):
baf9a7f
Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ def generateS(prompt, history, system_prompt, temperature=0.2, max_new_tokens=51
|
|
66 |
output = ""
|
67 |
|
68 |
for response in stream:
|
69 |
-
output += response
|
70 |
yield output
|
71 |
return output
|
72 |
|
|
|
66 |
output = ""
|
67 |
|
68 |
for response in stream:
|
69 |
+
output += json.dumps(response)
|
70 |
yield output
|
71 |
return output
|
72 |
|