Spaces:
Sleeping
Sleeping
clementsan
commited on
Commit
•
1e93bea
1
Parent(s):
e4c8a25
Update UI buttons labels
Browse files
app.py
CHANGED
@@ -221,7 +221,7 @@ def demo():
|
|
221 |
with gr.Row():
|
222 |
db_progress = gr.Textbox(label="Vector database initialization", value="None")
|
223 |
with gr.Row():
|
224 |
-
db_btn = gr.Button("
|
225 |
|
226 |
with gr.Tab("Step 2 - QA chain initialization"):
|
227 |
with gr.Row():
|
@@ -237,7 +237,7 @@ def demo():
|
|
237 |
with gr.Row():
|
238 |
llm_progress = gr.Textbox(value="None",label="QA chain initialization")
|
239 |
with gr.Row():
|
240 |
-
qachain_btn = gr.Button("
|
241 |
|
242 |
with gr.Tab("Step 3 - Conversation with chatbot"):
|
243 |
chatbot = gr.Chatbot(height=300)
|
|
|
221 |
with gr.Row():
|
222 |
db_progress = gr.Textbox(label="Vector database initialization", value="None")
|
223 |
with gr.Row():
|
224 |
+
db_btn = gr.Button("Generate vector database...")
|
225 |
|
226 |
with gr.Tab("Step 2 - QA chain initialization"):
|
227 |
with gr.Row():
|
|
|
237 |
with gr.Row():
|
238 |
llm_progress = gr.Textbox(value="None",label="QA chain initialization")
|
239 |
with gr.Row():
|
240 |
+
qachain_btn = gr.Button("Initialize question-answering chain...")
|
241 |
|
242 |
with gr.Tab("Step 3 - Conversation with chatbot"):
|
243 |
chatbot = gr.Chatbot(height=300)
|