# API and Token configurations | |
# api_token: YOUR_API_TOKEN_HERE # Required only for local runs. Set this or use API_TOKEN environment variable. | |
queue_repo: stacklok/requests | |
# File paths | |
eval_requests_path: ./eval-queue | |
eval_results_path: ./eval-results | |
# Model configurations | |
allowed_weight_types: | |
- Safetensors | |
- PyTorch | |
- GGUF | |
- Other | |
default_revision: main | |
# Logging configuration | |
log_level: INFO | |
# Evaluation configurations | |
evaluation_wait_time: 60 # minutes | |
# Environment type | |
is_local: false # Set to true for local runs, false for Hugging Face deployment | |
# Note: All of these values can be overridden by environment variables. | |
# The corresponding environment variable names are: | |
# API_TOKEN, QUEUE_REPO, EVAL_REQUESTS_PATH, EVAL_RESULTS_PATH, LOG_LEVEL, EVALUATION_WAIT_TIME, IS_LOCAL | |