Update app.py
Browse files
app.py
CHANGED
@@ -150,7 +150,8 @@ with demo:
|
|
150 |
slider_topk = gr.Slider(label="Top K", minimum=1, maximum=10, value=5, step=1)
|
151 |
qachain_btn = gr.Button("Initialize LLM")
|
152 |
qa_chain = gr.Textbox(label="QA Chain", lines=20, container=True)
|
153 |
-
|
|
|
154 |
|
155 |
with gr.Tab("Step 4 - Chatbot"):
|
156 |
chatbot = gr.Chatbot(height=300)
|
|
|
150 |
slider_topk = gr.Slider(label="Top K", minimum=1, maximum=10, value=5, step=1)
|
151 |
qachain_btn = gr.Button("Initialize LLM")
|
152 |
qa_chain = gr.Textbox(label="QA Chain", lines=20, container=True)
|
153 |
+
db_progress = gr.Progress()
|
154 |
+
llm_progress = gr.Progress()
|
155 |
|
156 |
with gr.Tab("Step 4 - Chatbot"):
|
157 |
chatbot = gr.Chatbot(height=300)
|