nl2sql-copilot / .env.example
Melika Kheirieh
refactor(core): DI-ready Pipeline; add registry + YAML factory + typed trace/result
2d682e2
raw
history blame contribute delete
628 Bytes
# ---- GAPGPT proxy (preferred if set) ----
# Set these if you're using GapGPT, Helicone, LocalAI, etc.
PROXY_API_KEY="your-proxy-token-here"
PROXY_BASE_URL="https://api.gapgpt.app/v1"
# Optional:
# LLM_MODEL_ID="gpt-4o-mini"
# ---- Direct OpenAI fallback ----
# Only used if PROXY_* are not defined.
# OPENAI_API_KEY="your-openai-key-here"
# OPENAI_BASE_URL="https://api.openai.com/v1"
# OPENAI_MODEL_ID="gpt-4o-mini"
# ---- Database configs ----
# DB_MODE can be "sqlite" (default) or "postgres"
DB_MODE=sqlite
# POSTGRES_DSN="postgresql+psycopg2://user:password@localhost:5432/demo"
# ---- App meta ----
APP_VERSION=0.1.0