sabazo commited on
Commit
12fb877
1 Parent(s): e887c2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ title = """
58
  with gr.Blocks(css=css) as demo:
59
  with gr.Column(elem_id="col-container"):
60
  gr.HTML(title)
61
- chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
62
  with gr.Row():
63
  question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
64
  question.submit(add_text, [chatbot, question], [chatbot, question]).then(
 
58
  with gr.Blocks(css=css) as demo:
59
  with gr.Column(elem_id="col-container"):
60
  gr.HTML(title)
61
+ chatbot = gr.Chatbot([], elem_id="chatbot")
62
  with gr.Row():
63
  question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
64
  question.submit(add_text, [chatbot, question], [chatbot, question]).then(