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