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