abidlabs's picture
abidlabs HF Staff
Update app.py
caa5ba9
raw
history blame contribute delete
149 Bytes
import gradio as gr
import time
def sleep(x):
time.sleep(6)
return x + ", hello"
gr.Interface(sleep, "textbox", "textbox").queue().launch()