caidanfeng commited on
Commit
e4ea651
·
1 Parent(s): 1e02f46
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -88,7 +88,7 @@ with gr.Blocks(css="#chatbot{height:350px} .overflow-y-auto{height:500px}") as d
88
  state = gr.State([])
89
 
90
  with gr.Row():
91
- txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
92
 
93
  txt.submit(predict, [txt, state], [chatbot, state])
94
 
 
88
  state = gr.State([])
89
 
90
  with gr.Row():
91
+ txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter")
92
 
93
  txt.submit(predict, [txt, state], [chatbot, state])
94