Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ def greet(name):
|
|
4 |
return "Hello " + name + "!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet,
|
7 |
-
inputs=[gr.Textbox(label='Description'),
|
|
|
8 |
outputs="text")
|
9 |
iface.launch()
|
|
|
4 |
return "Hello " + name + "!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet,
|
7 |
+
inputs=[gr.Textbox(label='Description'),
|
8 |
+
gr.Dropdown(label='Color',choices=['Beige','Black'])],
|
9 |
outputs="text")
|
10 |
iface.launch()
|