alozowski's picture
alozowski HF staff
Fix logging issue
2a097f5
raw
history blame
910 Bytes
import os
import logging
from typing import Optional
from huggingface_hub import HfApi
from pathlib import Path
from app.core.cache import cache_config
logger = logging.getLogger(__name__)
# Organization or user who owns the datasets
HF_ORGANIZATION = "open-llm-leaderboard"
# Get HF token directly from environment
HF_TOKEN = os.environ.get("HF_TOKEN")
if not HF_TOKEN:
logger.warning("HF_TOKEN not found in environment variables. Some features may be limited.")
# Initialize HF API
API = HfApi(token=HF_TOKEN)
# Repository configuration
QUEUE_REPO = f"{HF_ORGANIZATION}/requests"
AGGREGATED_REPO = f"{HF_ORGANIZATION}/contents"
VOTES_REPO = f"{HF_ORGANIZATION}/votes"
OFFICIAL_PROVIDERS_REPO = f"{HF_ORGANIZATION}/official-providers"
# File paths from cache config
VOTES_PATH = cache_config.votes_file
EVAL_REQUESTS_PATH = cache_config.eval_requests_file
MODEL_CACHE_DIR = cache_config.models_cache