cbensimon's picture
cbensimon HF Staff
Update app.py
f1ecfd1
raw
history blame
151 Bytes
import gradio as gr
def greet(name):
return "Hellos " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()