Spaces:
Paused
Paused
ElPlaguister
commited on
Commit
β’
2d411cc
1
Parent(s):
7ffda7a
Fix app.py
Browse files
app.py
CHANGED
@@ -51,6 +51,6 @@ with gr.Blocks(theme=theme) as demo:
|
|
51 |
with gr.Row():
|
52 |
txt = gr.Textbox(show_label=False, placeholder='Send a message...', container=False)
|
53 |
|
54 |
-
txt.submit(chat, [txt, chatbot], [txt, chatbot])
|
55 |
|
56 |
demo.launch(debug=True, share=True)
|
|
|
51 |
with gr.Row():
|
52 |
txt = gr.Textbox(show_label=False, placeholder='Send a message...', container=False)
|
53 |
|
54 |
+
txt.submit(chat, [txt, chatbot, model], [txt, chatbot])
|
55 |
|
56 |
demo.launch(debug=True, share=True)
|