Skip to content
All guides
Advanced Setup 6 min read

Configuring the optional LLM backend

The LLM in Crawl Cove explains findings and drafts summaries — and nothing more. The app works fully without it. Here's how it stays safe, plus exact setup for a free local model or an Anthropic key.

Note

Read this first — what the LLM is and isn't. In Crawl Cove the language model is interpretation only: it explains findings in plain English and drafts report summaries. The app is fully functional with the LLM set to none — that's the default — falling back to deterministic templates. No LLM output can ever create, remove, or re-score a finding. Every finding comes from a coded, versioned check. The model's output is also schema-validated: anything that fails strict validation falls back to the template and is tagged so the degradation is visible. You are never trusting the model with the numbers — only with the wording.

That boundary is the whole design. Findings, severities, and impact scores are deterministic; the LLM sits on top to make them readable and to give you a first draft of the executive summary. So configuring a backend is genuinely optional — turn it on for nicer explanations, leave it off and lose nothing factual.

If you do want it on, you have two options.

Option A — Ollama (local, free, no key)

This runs a model entirely on your own machine. Nothing leaves your computer, there's no API key, and there's no per-request cost — which fits Crawl Cove's local-first, private-by-default posture.

  1. Install Ollama from ollama.com.

  2. Pull a chat model:

    ollama pull llama3.1
    

    (Another chat model works too — this is just a sensible default.)

  3. Make sure the daemon is running on http://localhost:11434 (Ollama starts it for you after install).

  4. In Crawl Cove → Settings → LLM → set the backend to Ollama → click Test connectionpick a model → save.

That's it — no account, no key, no quota.

Option B — Anthropic API key (cloud)

If you'd rather use a hosted model, Crawl Cove can call Anthropic.

Note

What you'll need: an Anthropic account and an API key from console.anthropic.com. A few minutes.

  1. Create a key at console.anthropic.com.
  2. In Crawl Cove → Settings → LLM → set the backend to Anthropic.
  3. Paste the key (it's stored encrypted — see below).
  4. Pick a model. The default is claude-opus-4-8; claude-sonnet-4-6 and claude-haiku-4-5 are also valid choices.
  5. Click Test connection to confirm it works before you rely on it.

Tip

The Test connection button on either backend is worth using every time you change the configuration. A working test now means the evidence drawer's AI explanations and the report's drafted summary will be there when you need them on a client call — rather than discovering a misconfiguration mid-deliverable.

The Crawl Cove Settings LLM backend panel with a None/Ollama backend toggle, model picker, and a successful Test connection result listing local models

When the model misbehaves, the app stays honest

Crawl Cove is built to degrade gracefully, never to crash on the LLM:

  • Output that fails strict schema validation falls back to the deterministic template and is tagged so you can see it degraded.
  • A provider rate limit maps to a clean rate_limited code — not a crash.

So a flaky or rate-limited model never breaks your workflow; you just fall back to the template behaviour you'd have with the LLM off.

Your key is handled like every other secret

The Anthropic key follows Crawl Cove's secret discipline: it's encrypted via Electron safeStorage and lives only in the encrypted secrets folder under <userData>/secrets/. It is never written to the SQLite database, returned across the IPC bridge to the interface, rendered back, or logged — the same rule that governs your OAuth tokens and every other API key. Setting a model up doesn't widen your exposure.

Next

Put this guide into practice

Crawl Cove runs these audits on your machine and tells you exactly what to fix first. See the features or compare the plans.

Download Crawl Cove

Keep reading