Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -85,7 +85,8 @@ with gr.Blocks() as demo:
|
|
| 85 |
|
| 86 |
sumbit.click(model_chat,
|
| 87 |
inputs=[textbox, chatbot, system_state],
|
| 88 |
-
outputs=[textbox, chatbot, system_input]
|
|
|
|
| 89 |
clear_history.click(fn=clear_session,
|
| 90 |
inputs=[],
|
| 91 |
outputs=[textbox, chatbot])
|
|
|
|
| 85 |
|
| 86 |
sumbit.click(model_chat,
|
| 87 |
inputs=[textbox, chatbot, system_state],
|
| 88 |
+
outputs=[textbox, chatbot, system_input],
|
| 89 |
+
concurrency_limit = 100)
|
| 90 |
clear_history.click(fn=clear_session,
|
| 91 |
inputs=[],
|
| 92 |
outputs=[textbox, chatbot])
|