Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -72,7 +72,6 @@ def interactWithModel(history, system_prompt, prompt):
|
|
72 |
output = ""
|
73 |
for response in stream:
|
74 |
output += response.token.text
|
75 |
-
yield [(prompt, output)]
|
76 |
history.append((prompt, output))
|
77 |
return history
|
78 |
|
|
|
72 |
output = ""
|
73 |
for response in stream:
|
74 |
output += response.token.text
|
|
|
75 |
history.append((prompt, output))
|
76 |
return history
|
77 |
|