sukiboo's picture
add placeholder app.py
cae8655
raw
history blame
171 Bytes
import gradio as gr
def greet(name):
return 'Work in progress, come back later 😴️'
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()