Martijn van Beers
hello world
e8c51f1
raw
history blame
175 Bytes
import gradio
def greet(name):
return f"Hello {name}. Check back soon for real content"
iface = gradio.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()