Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
hello-world-with-queue
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
33867b0
hello-world-with-queue
/
app.py
abidlabs
HF Staff
Update app.py
caa5ba9
over 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
import
time
def
sleep
(
x
):
time.sleep(
6
)
return
x +
", hello"
gr.Interface(sleep,
"textbox"
,
"textbox"
).queue().launch()