# {{project_name}} — environment. Copy to .env and fill in.  cp env .env
#
# The whole pod runs on Tier 1 alone against the seed proof store (./data). The
# LLM chain (extract -> build -> approve routing) works day-0; the proof reads,
# Box approval, and Finance submission use dev stand-ins until you wire Tiers 2-3.

# ── Tier 1 — required to boot ──────────────────────────────────────────────
LEAFMESH_LICENSE_KEY=
ANTHROPIC_API_KEY=            # Odo (extraction) + Fern (build) run on Claude
OPENAI_API_KEY=              # Remi + the Manager (gpt-4o-mini) — required unless you change the models

# ── State store ────────────────────────────────────────────────────────────
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=

# ── HITL — where human members are notified (employee / approver / finance) ──
HITL_OUTBOUND_URL=http://127.0.0.1:9999/human-notify

# ── Tier 2 — real proof connectors (Outlook / Box). Set the URL, then UNCOMMENT
#    the mcp block in configs/config.yaml. Inert until then. ──
OUTLOOK_MCP_URL=
OUTLOOK_MCP_TOKEN=
BOX_MCP_URL=
BOX_MCP_TOKEN=

# ── Tier 3 — SAP direct posting replaces the Finance email (later) ──
# SAP_MCP_URL=
