Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -254,7 +254,6 @@ with gr.Blocks() as demo:
|
|
| 254 |
# When the user clicks Send, process the message and update the chat.
|
| 255 |
send_btn.click(fn=chat_respond,
|
| 256 |
inputs=[user_input, chat_state, prompt_dropdown],
|
| 257 |
-
outputs=[chatbot, chat_state]
|
| 258 |
-
stream=True)
|
| 259 |
|
| 260 |
demo.launch(debug=True)
|
|
|
|
| 254 |
# When the user clicks Send, process the message and update the chat.
|
| 255 |
send_btn.click(fn=chat_respond,
|
| 256 |
inputs=[user_input, chat_state, prompt_dropdown],
|
| 257 |
+
outputs=[chatbot, chat_state])
|
|
|
|
| 258 |
|
| 259 |
demo.launch(debug=True)
|