Spaces:
Runtime error
Runtime error
Commit
·
e5ab3ea
1
Parent(s):
861412f
Update app.py
Browse files
app.py
CHANGED
@@ -39,8 +39,8 @@ with gr.Blocks() as demo:
|
|
39 |
messages=chat_history
|
40 |
)
|
41 |
time.sleep(2)
|
42 |
-
return "",
|
43 |
|
44 |
-
msg.submit(respond,[msg,chatbot],chatbot)
|
45 |
|
46 |
demo.launch()
|
|
|
39 |
messages=chat_history
|
40 |
)
|
41 |
time.sleep(2)
|
42 |
+
return "", chat_history
|
43 |
|
44 |
+
msg.submit(respond,[msg,chatbot],[msg, chatbot])
|
45 |
|
46 |
demo.launch()
|