~/distillery setup → continue
Continue.dev's config.json exposes an apiBase field per model — swap it for The Distillery endpoint.
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 / 02Open `~/.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/"
}]
}~/.continue/config.json%USERPROFILE%\.continue\config.json$ verify
step 02 / 02thedistillery statsEvaluating 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.