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