Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ivorobyev
/
plasmadex
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a6c5a1d
plasmadex
/
app.py
ivorobyev
Update app.py
a6c5a1d
verified
8 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
import
gradio
as
gr
import
os
HF_TOKEN = os.environ.get(
"HF_TOKEN"
)
demo = gr.load(
"DMKSE/dmk"
, src=
"spaces"
, hf_token=HF_TOKEN)
demo.launch(share=
True
, show_error=
True
, allowed_paths=[
"/"
])