test_space / app.py
danieladejumo's picture
Added application file
3da0d62
raw
history blame
142 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()