File size: 527 Bytes
c8be55c
40afe38
c8be55c
 
 
 
 
d0faba1
c8be55c
d0faba1
 
 
c8be55c
 
40afe38
c8be55c
40afe38
c8be55c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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

OWNER = "boatbomber"
REPO_ID = f"{OWNER}/roblox-llm-leaderboard"
RESULTS_REPO = 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"

API = HfApi(token=TOKEN)