Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -477,7 +477,7 @@ with gr.Blocks(title="Intelligent Agent with Conditional Search") as demo:
|
|
477 |
|
478 |
with gr.Row():
|
479 |
model_choice = gr.Dropdown(
|
480 |
-
choices=["Llama 3.1 8B", "
|
481 |
value="Llama 3.1 8B",
|
482 |
label="Select Model"
|
483 |
)
|
@@ -485,7 +485,6 @@ with gr.Blocks(title="Intelligent Agent with Conditional Search") as demo:
|
|
485 |
refresh_btn = gr.Button("Refresh Progress", variant="secondary")
|
486 |
|
487 |
generation_status = gr.Textbox(label="Generation Status", lines=2, interactive=False)
|
488 |
-
answers_preview = gr.DataFrame(label="Generated Answers Preview", wrap=True)
|
489 |
|
490 |
generate_btn.click(
|
491 |
fn=start_answer_generation,
|
|
|
477 |
|
478 |
with gr.Row():
|
479 |
model_choice = gr.Dropdown(
|
480 |
+
choices=["Llama 3.1 8B", "Mistral 7B"],
|
481 |
value="Llama 3.1 8B",
|
482 |
label="Select Model"
|
483 |
)
|
|
|
485 |
refresh_btn = gr.Button("Refresh Progress", variant="secondary")
|
486 |
|
487 |
generation_status = gr.Textbox(label="Generation Status", lines=2, interactive=False)
|
|
|
488 |
|
489 |
generate_btn.click(
|
490 |
fn=start_answer_generation,
|