-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 1.92 KB
/
.env.example
File metadata and controls
33 lines (27 loc) · 1.92 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
28
29
30
31
32
33
# ── General ──────────────────────────────────────────────────────────────
DEBUG=True
ENVIRONMENT=development
PROJECT_NAME=Autonomous AI Agent API
# ── Database ─────────────────────────────────────────────────────────────
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/dbname?ssl=require
POOL_SIZE=5
POOL_MAX_OVERFLOW=10
POOL_RECYCLE_SECONDS=300
# ── LLM ──────────────────────────────────────────────────────────────────
LLM_BASE_URL=http://host.docker.internal:11434
LLM_MODEL=qwen3:8b
LLM_API_KEY=
LLM_TIMEOUT=120.0
MAX_REACT_ITERATIONS=10
# ── CORS ─────────────────────────────────────────────────────────────────
# JSON array of allowed origins (use '["*"]' for development only)
CORS_ALLOWED_ORIGINS=["*"]
# ── Logging ──────────────────────────────────────────────────────────────
LOG_LEVEL=INFO
LOG_DIR=logs
LOG_MAX_BYTES=10485760
LOG_BACKUP_COUNT=5
# ── Input Limits ─────────────────────────────────────────────────────────
MAX_PROMPT_LENGTH=2000
# ── Observability ────────────────────────────────────────────────────────
BETTERSTACK_SOURCE_TOKEN=