Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/gradio-5-test
abidlabs
/
gradio-5-test-zero
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1950f75
gradio-5-test-zero
/
app.py
abidlabs
HF Staff
Update app.py
1e62c55
verified
9 months ago
raw
Copy download link
history
blame
145 Bytes
import
gradio
as
gr
def
test
():
return
"Hello"
with
gr.Blocks()
as
demo:
t = gr.Textbox()
demo.launch(test,
None
, t)
demo.launch()