Spaces:
Sleeping
Sleeping
File size: 258 Bytes
1719436 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
from huggingface_hub import HfApi
REPO_ID = os.getenv("SPACE_ID", "d0rj/romb-leaderboard")
HF_TOKEN = os.getenv("HF_TOKEN", None)
if not HF_TOKEN:
raise ValueError("HF_TOKEN environment variable is not set.")
hf_api = HfApi(token=HF_TOKEN)
|