Spaces:
Runtime error
Runtime error
test: let's see what will happen if we pass not a list of two but a list of one
Browse files
app.py
CHANGED
|
@@ -275,7 +275,7 @@ class ChatInterface(gr.ChatInterface):
|
|
| 275 |
self.fn, *inputs, limiter=self.limiter
|
| 276 |
)
|
| 277 |
|
| 278 |
-
history.append([message
|
| 279 |
return history, history
|
| 280 |
|
| 281 |
chat_interface = ChatInterface(
|
|
|
|
| 275 |
self.fn, *inputs, limiter=self.limiter
|
| 276 |
)
|
| 277 |
|
| 278 |
+
history.append([message+response])
|
| 279 |
return history, history
|
| 280 |
|
| 281 |
chat_interface = ChatInterface(
|