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