tonyassi's picture
Update app.py
025fddd
raw
history blame
319 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet,
inputs=[gr.Textbox(label='Description'),
gr.Dropdown(label='Color',choices=['Beige','Black']),multiselect=True],
outputs="text")
iface.launch()