Spaces:
Sleeping
Sleeping
making dropdown interactive
Browse files
app.py
CHANGED
|
@@ -261,8 +261,11 @@ with gr.Blocks(theme=custom_theme) as chatbot:
|
|
| 261 |
with gr.Row(scale=3):
|
| 262 |
with gr.Column(scale=1):
|
| 263 |
with gr.Row():
|
| 264 |
-
level = gr.Dropdown(
|
| 265 |
-
|
|
|
|
|
|
|
|
|
|
| 266 |
)
|
| 267 |
|
| 268 |
with gr.Column(scale=4):
|
|
|
|
| 261 |
with gr.Row(scale=3):
|
| 262 |
with gr.Column(scale=1):
|
| 263 |
with gr.Row():
|
| 264 |
+
level = gr.Dropdown(
|
| 265 |
+
choices = ["Small", "Medium", "Large"],
|
| 266 |
+
label="Dog Size",
|
| 267 |
+
info="What is your dog's size?",
|
| 268 |
+
interactive=True
|
| 269 |
)
|
| 270 |
|
| 271 |
with gr.Column(scale=4):
|