paloma99 commited on
Commit
70eb704
·
verified ·
1 Parent(s): 6f8418a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ with chatbot_gradio_app as demo:
37
  chatbot = gr.Chatbot()
38
  state = gr.State([])
39
  with gr.Row():
40
- txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
41
  txt.submit(predict_chatbot, [txt, state], [chatbot, state])
42
 
43
  # Launch the interfaces
 
37
  chatbot = gr.Chatbot()
38
  state = gr.State([])
39
  with gr.Row():
40
+ txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter")
41
  txt.submit(predict_chatbot, [txt, state], [chatbot, state])
42
 
43
  # Launch the interfaces