tonyassi's picture
Update app.py
027a3be
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()