Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
hello-world-without-queue
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
486fef6
hello-world-without-queue
/
app.py
abidlabs
HF Staff
Create app.py
486fef6
over 2 years ago
raw
Copy download link
history
blame
Safe
106 Bytes
import
gradio
as
gr
gr.Interface(
lambda
x:
"Hello "
+ x,
"textbox"
,
"textbox"
).launch(enable_queue=
False
)