gracexf commited on
Commit
cc32827
·
verified ·
1 Parent(s): 68451cb

making dropdown interactive

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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(choices =
265
- ["Small", "Medium", "Large"], label="Dog Size", info="What is your dog's size?"
 
 
 
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):