-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 1.44 KB
/
Copy path.env.example
File metadata and controls
22 lines (18 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ─── Required ────────────────────────────────────────────────────────────────
OPENAI_API_KEY=sk-...
POSTGRES_PASSWORD=localdev
# ─── Database (defaults match docker-compose.yml) ────────────────────────────
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=agentdb
POSTGRES_USER=agent
DATABASE_POOL_SIZE=10
# ─── LLM ─────────────────────────────────────────────────────────────────────
LLM_MODEL=gpt-4o-mini
EMBEDDING_MODEL=text-embedding-3-small
# ─── Optional integrations ───────────────────────────────────────────────────
TAVILY_API_KEY= # Required only for web_search tool
# ─── App ─────────────────────────────────────────────────────────────────────
APP_ENV=development # development | production
LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR
LOG_FORMAT=text # text (human-readable) | json (for log aggregation)