-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
27 lines (23 loc) · 1.1 KB
/
.env.example
File metadata and controls
27 lines (23 loc) · 1.1 KB
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
27
# ── Anthropic / agentic-flow ─────────────────────────────────────────
# Required for `cfa analyze` — get yours at https://console.anthropic.com
ANTHROPIC_API_KEY=sk-ant-...
# Model override (default: claude-sonnet-4-5-20250929)
CFA_MODEL=claude-haiku-4-5-20251001
# Multi-provider routing: anthropic | openrouter | requesty | gemini
PROVIDER=anthropic
# ── PostgreSQL connection (ruvector-postgres container) ──────────────
PG_HOST=localhost
PG_PORT=5433
PG_USER=cfa
PG_PASSWORD=cfa_dev_pass
PG_DATABASE=cfa_agents
# Memory backend selection: sqlite (default) | postgres | local
CFA_MEMORY_BACKEND=sqlite
# ── FMP (Financial Modeling Prep) ────────────────────────────────────
# Required for fmp-mcp-server market data tools — get yours at https://financialmodelingprep.com/developer
FMP_API_KEY=your-fmp-api-key
# Connection pool settings
PG_POOL_MIN=2
PG_POOL_MAX=10
PG_IDLE_TIMEOUT_MS=30000
PG_CONNECTION_TIMEOUT_MS=5000