# nl2sql-bench/.env.example # ───────────────────────────────────────────────────────────────────────────── # Copy this file to .env and fill in your values. # NEVER commit .env to version control. # # All three variables below are MANDATORY per competition rules. # ───────────────────────────────────────────────────────────────────────────── # LLM API endpoint (HuggingFace router or any OpenAI-compatible base URL) API_BASE_URL=https://router.huggingface.co/v1 # Model identifier — must be accessible at the above endpoint MODEL_NAME=Qwen/Qwen2.5-7B-Instruct # HuggingFace API token (also used as the OpenAI-client api_key) HF_TOKEN=hf_your_token_here # ── Optional overrides ──────────────────────────────────────────────────── # LOCAL_IMAGE_NAME=nl2sql-bench:latest # Docker image name for local dev SPACE_URL=https://your-space.hf.space # Deployed HF Space URL # NL2SQL_DEFAULT_TASK=simple-filter # Default task (overridden per episode) # NL2SQL_MAX_STEPS=5 # Max steps per episode # ENABLE_WEB_INTERFACE=true # Enable /web UI for debugging