cbensimon's picture
cbensimon HF Staff
Create app.py
7abbec1
raw
history blame contribute delete
182 Bytes
import time
import gradio as gr
def greet(name):
time.sleep(10)
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()