Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
espnet
/
SingingSDS
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
jhansss
commited on
Jun 30, 2025
Commit
0ab0358
·
verified
·
1 Parent(s):
3240f36
Add HF_TOKEN login
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
CHANGED
Viewed
@@ -1,3 +1,9 @@
1
from interface import GradioInterface
2
3
1
+
import os
2
+
from huggingface_hub import login
3
+
4
+
if os.getenv("HF_TOKEN"):
5
+
login(token=os.getenv("HF_TOKEN"))
6
+
7
from interface import GradioInterface
8
9