Update gradio/gradio_app_v2.py
Browse files- gradio/gradio_app_v2.py +2 -2
gradio/gradio_app_v2.py
CHANGED
|
@@ -380,8 +380,8 @@ with gr.Blocks(title="RAG Agent Chat", theme=line_theme, css="""
|
|
| 380 |
choices=get_agent_names(),
|
| 381 |
value=get_agent_names()[0] if get_agent_names() else "No agents found",
|
| 382 |
label="Select Agent",
|
| 383 |
-
interactive=
|
| 384 |
-
visible=
|
| 385 |
)
|
| 386 |
with gr.Column(scale=1):
|
| 387 |
clear_btn = gr.Button("Create New Chat", variant="secondary", scale=1, size="sm")
|
|
|
|
| 380 |
choices=get_agent_names(),
|
| 381 |
value=get_agent_names()[0] if get_agent_names() else "No agents found",
|
| 382 |
label="Select Agent",
|
| 383 |
+
interactive=False,
|
| 384 |
+
visible=True
|
| 385 |
)
|
| 386 |
with gr.Column(scale=1):
|
| 387 |
clear_btn = gr.Button("Create New Chat", variant="secondary", scale=1, size="sm")
|