Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
hello-world
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4fa47e8
hello-world
/
app.py
abidlabs
HF Staff
Update app.py
004bd85
over 2 years ago
raw
Copy download link
history
blame
176 Bytes
import
gradio
as
gr
import
time
def
greet
(
name
):
time.sleep(
5
)
return
"Hello "
+ name
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch(enable_queue=
True
)