Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
workers-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
87641f9
workers-test
/
app.py
abidlabs
HF Staff
Create app.py
87641f9
about 3 years ago
raw
Copy download link
history
blame
Safe
121 Bytes
import
gradio
as
gr
import
time
def
test
(
x
):
time.sleep(
5
)
return
x
gr.Interface(test,
"text"
,
"text"
).launch()