diff --git a/.env.example b/.env.example index aeb76a3..a2b6921 100644 --- a/.env.example +++ b/.env.example @@ -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 diff --git a/README.md b/README.md index 7719161..0ce466d 100644 --- a/README.md +++ b/README.md @@ -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). | diff --git a/public/index.html b/public/index.html index 84e7d15..a006f00 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@
- +