Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ DATA_DIR=./data
# --- LLM provider (optional; unset = no-AI, enrichment disabled) ---
# CLI agent id for the subprocess provider (claude / codex / cursor-agent).
# LLM_AGENT=claude
# Model name (HttpProvider or CLI).
# Model name (HttpProvider or CLI). Unset with LLM_AGENT=claude means Sonnet: the
# CLI would otherwise inherit whatever your INTERACTIVE default is (often Opus),
# which is slow and expensive for what is a fixed-schema extraction. Set this to
# override — e.g. `opus` for a richer read, `haiku` for a cheaper one. codex is
# left unpinned and uses its own default.
# LLM_MODEL=
# OpenAI-compatible base URL (HttpProvider).
# LLM_BASE_URL=https://api.openai.com/v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ the full annotated list). Empty/whitespace values are treated as unset.
| `HOST` | `127.0.0.1` | Bind address. **Localhost-only by default** (see Security). |
| `DATA_DIR` | `./data` | Persistent data root (SQLite DB + screenshots). |
| `CHROME_PATH` | autodetect | System Chromium/Chrome binary; autodetected on Linux when unset. |
| `LLM_AGENT` / `LLM_MODEL` / `LLM_BASE_URL` / `LLM_API_KEY` | unset | LLM provider. **Unset = no-AI** (enrichment disabled). |
| `LLM_AGENT` / `LLM_MODEL` / `LLM_BASE_URL` / `LLM_API_KEY` | unset | LLM provider. **Unset = no-AI** (enrichment disabled). With `LLM_AGENT=claude` and no `LLM_MODEL`, Board asks the CLI for **Sonnet** rather than inheriting your interactive default. |
| `CAPTURE_TIMEOUT_MS` | `180000` | Budget for one capture job — page capture **and** the AI read share it. A CLI agent routinely takes 90–100s; raise it for slow local models. |
| `BOARD_API_TOKEN` | unset | Bearer token for the `/api/v1` capture API. **Unset = the v1 API is off** (fail-closed). See [Integrations](docs/integrations.md). |

Expand Down
Loading
Loading