sat2map / app.py
Kiwinicki's picture
Update app.py
66754a0 verified
raw
history blame
143 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()