Update app.py
Browse files
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")
|
|
|
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)
|