Spaces:
Sleeping
Sleeping
File size: 1,512 Bytes
a39d8ef 1a45976 a39d8ef 1a16689 a39d8ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # 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
|