Lzy01241010 commited on
Commit
4e8a39e
·
1 Parent(s): 88069c8

ui: fix hero heading grammar; default Max Turns 6 -> 15

Browse files

- "What I can research for you?" -> "What can I search for you?"
- Max Turns slider default value 6 -> 15 (research questions typically need
~10-15 turns to converge; 6 was too low and many runs hit the cap)

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2386,7 +2386,7 @@ with gr.Blocks(
2386
  with gr.Group(elem_classes="section-card"):
2387
  gr.HTML(
2388
  '<div class="section-heading">Ask the agent</div>'
2389
- '<div class="hero-heading"><span class="quest-name">QUEST</span>: What I can research for you?</div>'
2390
  )
2391
  question = gr.Textbox(
2392
  show_label=False,
@@ -2485,7 +2485,7 @@ with gr.Blocks(
2485
  label="Max Turns",
2486
  minimum=2,
2487
  maximum=50,
2488
- value=6,
2489
  step=1,
2490
  elem_id="quest-max-turns",
2491
  )
 
2386
  with gr.Group(elem_classes="section-card"):
2387
  gr.HTML(
2388
  '<div class="section-heading">Ask the agent</div>'
2389
+ '<div class="hero-heading"><span class="quest-name">QUEST</span>: What can I search for you?</div>'
2390
  )
2391
  question = gr.Textbox(
2392
  show_label=False,
 
2485
  label="Max Turns",
2486
  minimum=2,
2487
  maximum=50,
2488
+ value=15,
2489
  step=1,
2490
  elem_id="quest-max-turns",
2491
  )