File size: 528 Bytes
c8be55c 40afe38 c8be55c d0faba1 4661ccf c8be55c d0faba1 4661ccf c8be55c 40afe38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
from pathlib import Path
from huggingface_hub import HfApi
# Info to change for your repository
# ----------------------------------
TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
API = HfApi(token=TOKEN)
OWNER = "boatbomber"
REPO_ID = f"{OWNER}/roblox-llm-leaderboard"
RESULTS_REPO_ID = f"{OWNER}/roblox-llm-leaderboard-results"
# If you setup a cache later, just change HF_HOME
CACHE_PATH = Path(os.getenv("HF_HOME", "."))
RESULTS_REPO_PATH = CACHE_PATH / "roblox-llm-leaderboard-results"
|