leaderboard / envs.py
benediktstroebl's picture
init v1
7c691e6
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)