tatianija commited on
Commit
39ea98b
·
verified ·
1 Parent(s): 7c4b015

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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", "Llama 3.1 70B", "Mistral 7B", "CodeLlama 7B"],
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,