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...
abidlabs
HF Staff
commited on
Feb 24, 2024
Commit
b7a4079
·
verified
·
1 Parent(s):
d648c03
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
t = gr.Textbox()
5
+
i = gr.Image(type="filepath")
6
+
t.submit(lambda : "cheetah.jpg", None, i)
7
+
8
+
demo.launch()