Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
load-load-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f6cb342
load-load-test
/
app.py
abidlabs
HF Staff
Create app.py
f6cb342
verified
about 1 year ago
raw
Copy download link
history
blame
123 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
t = gr.Textbox()
demo.load(
lambda
:
"Hi"
,
None
, t)
demo.launch()