Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
private-test-space
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ce94c38
private-test-space
/
app.py
abidlabs
HF Staff
Create app.py
ce94c38
over 1 year ago
raw
Copy download link
history
blame
Safe
182 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
gr.Dropdown([
"abc"
,
"def"
])
btn = gr.Button(
"def"
)
t = gr.Textbox()
btn.click(
lambda
:
"test"
,
None
, t)
demo.launch()