FinDataPilot / .env.example
Fin-DataPilot Deploy Bot
ci: 5d4fb19
f992c25
Raw
History Blame Contribute Delete
1.11 kB
# ===== LLM =====
# LLM provider: minimax | openai | anthropic | custom (OpenAI-compatible)
LLM_PROVIDER=minimax
LLM_BASE_URL=https://api.minimaxi.com/v1
LLM_API_KEY=your-api-key-here
LLM_MODEL=MiniMax-M3
LLM_TEMPERATURE=0.2
LLM_MAX_TOKENS=4096
# ===== iWencai / 问财 API (used by 4 skills) =====
IWENCAI_API_KEY=your-iwencai-api-key-here
# IWENCAI_SKILL_ID_OVERRIDES=financial-query=hithink-financial-query,news-search=news-search
# ===== Server =====
DATA_PILOT_HOST=0.0.0.0
DATA_PILOT_PORT=7860
DATA_PILOT_ENV=development
API_KEY= # optional; if set, clients must send X-API-Key
# ===== CORS =====
CORS_ALLOW_ORIGINS=http://localhost:5173,http://localhost:3000,http://127.0.0.1:5173
# ===== Storage =====
# Set to a Turso URL to use libSQL in production; leave empty to use local SQLite
TURSO_DATABASE_URL=
TURSO_AUTH_TOKEN=
LOCAL_SQLITE_PATH=./data/findatapilot.db
# ===== Agent =====
AGENT_MAX_REFLECT_ROUNDS=5
AGENT_MAX_PARALLEL_SKILLS=3
AGENT_ENABLE_REFLECTION=true
# ===== Observability =====
LANGFUSE_PUBLIC_KEY=
LANGFUSE_SECRET_KEY=
LANGFUSE_HOST=
LOG_LEVEL=INFO