Spaces:
Running
Running
littlebird13
commited on
Commit
•
056f585
1
Parent(s):
0b5789f
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])
|