luke9705 commited on
Commit
8b72ba7
·
1 Parent(s): a2812c7

Add render option to Web Search checkbox in Gradio interface

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -212,8 +212,8 @@ with gr.Blocks() as demo:
212
  save_history=True,
213
  additional_inputs=[
214
  gr.Checkbox(value=False, label="Web Search",
215
- info="Enable web search to find information online. If disabled, the agent will only use the provided files and images."
216
- ),
217
  ])
218
 
219
 
 
212
  save_history=True,
213
  additional_inputs=[
214
  gr.Checkbox(value=False, label="Web Search",
215
+ info="Enable web search to find information online. If disabled, the agent will only use the provided files and images.",
216
+ render=False),
217
  ])
218
 
219