erav2s13 / app.py
Mojo
Added the first file in Hugging face spaces
b267f13
raw
history blame
147 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()