kakuguo commited on
Commit
2fa04e8
1 Parent(s): ef64ec7
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -25,7 +25,9 @@ with gr.Blocks(css="#chatbot{height:300px} .overflow-y-auto{height:500px}") as d
25
  state = gr.State([])
26
 
27
  with gr.Row():
28
- txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
 
 
29
 
30
  txt.submit(answer, [txt, state], [chatbot, state])
31
 
 
25
  state = gr.State([])
26
 
27
  with gr.Row():
28
+ #txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
29
+ txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(scale=0.8)
30
+
31
 
32
  txt.submit(answer, [txt, state], [chatbot, state])
33