igoracmorais commited on
Commit
f1ad471
·
verified ·
1 Parent(s): 4322b96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -12
app.py CHANGED
@@ -22,18 +22,7 @@ iface = gr.Interface(
22
  label="Pergunta",
23
  info="Escreva o que quer saber...")
24
  ],
25
- [
26
- gr.Slider(2, 20, value=4, label="Count", info="Choose between 2 and 20"),
27
- gr.Dropdown(
28
- ["cat", "dog", "bird"], label="Animal", info="Will add more animals later!"
29
- ),
30
- gr.CheckboxGroup(["USA", "Japan", "Pakistan"], label="Countries", info="Where are they from?"),
31
- gr.Radio(["park", "zoo", "road"], label="Location", info="Where did they go?"),
32
- gr.Dropdown(
33
- ["ran", "swam", "ate", "slept"], value=["swam", "slept"], multiselect=True, label="Activity", info="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, eget aliquam nisl nunc vel nisl."
34
- ),
35
- gr.Checkbox(label="Morning", info="Did they do it in the morning?"),
36
- ],
37
  outputs=gr.Textbox(type="text", label="Resposta")
38
  )
39
 
 
22
  label="Pergunta",
23
  info="Escreva o que quer saber...")
24
  ],
25
+ [gr.Slider(2, 20, value=4, label="Count", info="Choose between 2 and 20")],
 
 
 
 
 
 
 
 
 
 
 
26
  outputs=gr.Textbox(type="text", label="Resposta")
27
  )
28