Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ def chat_inf(system_prompt, prompt, history, client_choice, seed, temp, tokens,
|
|
47 |
output = ""
|
48 |
|
49 |
for response in stream:
|
50 |
-
output +=
|
51 |
yield [(prompt, output)]
|
52 |
history.append((prompt, output))
|
53 |
yield history
|
|
|
47 |
output = ""
|
48 |
|
49 |
for response in stream:
|
50 |
+
output += response
|
51 |
yield [(prompt, output)]
|
52 |
history.append((prompt, output))
|
53 |
yield history
|