core_leaderboard / envs.py
benediktstroebl's picture
added auto update
bb94aa7
raw
history blame contribute delete
191 Bytes
import os
from huggingface_hub import HfApi
HF_TOKEN = os.getenv('HF_TOKEN', None)
RESULTS_REPO_ID = 'agent-evals/results'
REPO_ID = 'agent-evals/leaderboard'
API = HfApi(token=HF_TOKEN)