Update app.py
Browse files
app.py
CHANGED
@@ -276,11 +276,11 @@ def demo():
|
|
276 |
with gr.Row():
|
277 |
db_progress = gr.Textbox(label="Vector database initialization", value="None", visible=True)
|
278 |
with gr.Row():
|
279 |
-
db_btn = gr.Button("Generate vector database
|
280 |
with gr.Row():
|
281 |
llm_progress = gr.Textbox(value="None",label="QA chain initialization", visible=True)
|
282 |
with gr.Row():
|
283 |
-
qachain_btn = gr.Button("Initialize
|
284 |
|
285 |
with gr.Row():
|
286 |
lang_btn = gr.Dropdown(languages_list, label="Languages", value = languages_list[1],
|
|
|
276 |
with gr.Row():
|
277 |
db_progress = gr.Textbox(label="Vector database initialization", value="None", visible=True)
|
278 |
with gr.Row():
|
279 |
+
db_btn = gr.Button("Generate vector database", size = 'sm')
|
280 |
with gr.Row():
|
281 |
llm_progress = gr.Textbox(value="None",label="QA chain initialization", visible=True)
|
282 |
with gr.Row():
|
283 |
+
qachain_btn = gr.Button("Initialize model", size = 'sm')
|
284 |
|
285 |
with gr.Row():
|
286 |
lang_btn = gr.Dropdown(languages_list, label="Languages", value = languages_list[1],
|