Pavan178 commited on
Commit
cd710c7
·
verified ·
1 Parent(s): 240cd86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -91,7 +91,8 @@ with gr.Blocks(css=css) as demo:
91
  langchain_status = gr.Textbox(label="Status", placeholder="", interactive=False)
92
  load_pdf = gr.Button("Load pdf to langchain")
93
 
94
- chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
 
95
  question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
96
  submit_btn = gr.Button("Send Message")
97
  load_pdf.click(loading_pdf, None, langchain_status, queue=False)
 
91
  langchain_status = gr.Textbox(label="Status", placeholder="", interactive=False)
92
  load_pdf = gr.Button("Load pdf to langchain")
93
 
94
+ chatbot = gr.Chatbot([], elem_id="chatbot")
95
+
96
  question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
97
  submit_btn = gr.Button("Send Message")
98
  load_pdf.click(loading_pdf, None, langchain_status, queue=False)