Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -62,8 +62,7 @@ def chat_inf(system_prompt, prompt, history, client_choice, seed, temp, tokens,
|
|
62 |
|
63 |
for response in stream:
|
64 |
output+= response
|
65 |
-
|
66 |
-
history.append((prompt, output))
|
67 |
yield history
|
68 |
|
69 |
|
|
|
62 |
|
63 |
for response in stream:
|
64 |
output+= response
|
65 |
+
history.append((" ", output))
|
|
|
66 |
yield history
|
67 |
|
68 |
|