Skip to content
The Distillery
Docs / Clients / Continue.dev
SETUP · continueverified

~/distillery setup → continue

Continue.dev's config.json exposes an apiBase field per model — swap it for The Distillery endpoint.

vendorAnthropic
authAPI key
methodconfig file
portlocalhost:3080

Overview

Continue.dev is an open-source coding assistant for VSCode and JetBrains. It uses a raw `fetch` client (no Anthropic SDK) with a configurable `apiBase` per model. Setting `apiBase` in `~/.continue/config.json` routes Continue's Claude traffic through The Distillery.

Important: Continue appends `messages` (not `/v1/messages`) to `apiBase` to form the full request URL. The `apiBase` value MUST end in `/v1/`, trailing slash required. If you set it to `http://localhost:3080`, requests will hit `/messages` instead of `/v1/messages` and fail.

Prerequisites

You have The Distillery installed and running locally on port 3080. Continue.dev 0.9 or newer is required.

$ configure

step 01 / 02

Open `~/.continue/config.json` and add the `apiBase` field to your Anthropic model entry. The value MUST be `http://localhost:3080/v1/` with the trailing `/v1/`; without it, Continue will form an incorrect URL.

{
  "models": [{
    "provider": "anthropic",
    "model": "claude-sonnet-4-5",
    "apiBase": "http://localhost:3080/v1/"
  }]
}
macOS · Linux
~/.continue/config.json
Windows
%USERPROFILE%\.continue\config.json

$ verify

step 02 / 02
01Reload the Continue extension, then send any prompt to trigger a Claude request. In a separate terminal, run:
thedistillery stats
$ comparing tools

Evaluating other Claude Code cost-reduction approaches alongside Continue.dev? See how The Distillery compares to Claude Code Router (model-routing approach), Compresr (YC W26), or browse alternatives to Claude Code Router for the full landscape.

Pricing breakdown: thedistillery.com/pricing.