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