tonyassi's picture
Update app.py
badd9c9
raw
history blame
246 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet,
inputs=[gr.Textbox(label='Description'),gr.Textbox(label='Color')],
outputs="text")
iface.launch()