Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
whitphx
/
gradio-pwa-test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f625e48
gradio-pwa-test
/
app.py
whitphx
HF staff
Disable SSR
f625e48
about 1 month ago
raw
Copy download link
history
blame
Safe
180 Bytes
import
gradio
as
gr
demo = gr.Interface(
lambda
x:
"cheetah.jpg"
,
"textbox"
,
"image"
, title=
"Cheetah Generator"
)
demo.launch(pwa=
True
, favicon_path=
"cheetah.jpg"
, ssr_mode=
False
)