ElPlaguister commited on
Commit
2d411cc
β€’
1 Parent(s): 7ffda7a

Fix app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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)