Add render option to Web Search checkbox in Gradio interface
Browse files
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 |
|