Spaces:
Sleeping
Sleeping
File size: 1,067 Bytes
1607c63 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copy this file to `.env` and fill in your real values.
# `.env` is gitignored — your token will NOT be committed.
#
# cp .env.example .env
# # then edit .env with your token
# ---- Required for inference ---------------------------------------------
HF_TOKEN=hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
API_BASE_URL=https://router.huggingface.co/v1
MODEL_NAME=Qwen/Qwen2.5-72B-Instruct
# ---- Optional: where to write the per-task scores -----------------------
# Set this to enable JSON output. Path is relative to where you run python.
# SCORES_OUT_PATH=../baseline_scores.json
# ---- Optional: env server URL (default = local Docker) ------------------
# ENV_BASE_URL=http://localhost:7860
# Or your deployed HF Space:
# ENV_BASE_URL=https://YOUR_USERNAME-api-contract-validator.hf.space
# ---- Optional: training-only ---------------------------------------------
# WANDB_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxx
# WANDB_PROJECT=openenv-contract-guardian
# BASE_MODEL=unsloth/Qwen2.5-1.5B-Instruct-bnb-4bit
# PUSH_TO_HUB=YOUR_USERNAME/api-contract-validator-grpo
|