| # Copy to .env and adjust values as needed | |
| # API server | |
| HOST=0.0.0.0 | |
| PORT=8000 | |
| API_KEY=change-me-please | |
| METRICS_KEY= | |
| # Model loading | |
| # Prefer local path if available, else HF model id | |
| # MODEL_PATH=/abs/path/to/qwen3-8b-elizabeth-simple | |
| HF_MODEL_ID=LevelUp2x/qwen3-8b-elizabeth-simple | |
| # CORS allowlist (comma-separated) | |
| ALLOW_ORIGINS=http://localhost,http://127.0.0.1 | |
| # Redis / Dragonfly | |
| REDIS_HOST=localhost | |
| REDIS_PORT=18000 | |
| # REDIS_PASSWORD= | |
| # Profiles root | |
| NOVA_PROFILES_ROOT=/nfs/novas/profiles | |
| # Client settings | |
| API_BASE=http://localhost:8000 | |
| # Evaluation | |
| EVAL_ROOT=/data/adaptai/projects/elizabeth/evaluation | |
| EVAL_LIMIT=0 | |
| EVAL_STRICT=0 | |