Continue.dev

Route Continue.dev requests through RelayPlane by configuring a custom API base URL.

Setup

Edit your Continue configuration file (~/.continue/config.json) to point at RelayPlane:

1{
2 "models": [
3 {
4 "title": "RelayPlane Auto",
5 "provider": "openai",
6 "model": "relayplane:auto",
7 "apiBase": "http://localhost:4100/v1",
8 "apiKey": "your-api-key"
9 }
10 ]
11}

Multiple Models

You can configure multiple routing strategies:

1{
2 "models": [
3 {
4 "title": "RelayPlane Auto",
5 "provider": "openai",
6 "model": "relayplane:auto",
7 "apiBase": "http://localhost:4100/v1",
8 "apiKey": "your-api-key"
9 },
10 {
11 "title": "RelayPlane Fast",
12 "provider": "openai",
13 "model": "rp:fast",
14 "apiBase": "http://localhost:4100/v1",
15 "apiKey": "your-api-key"
16 },
17 {
18 "title": "Claude Sonnet (via RelayPlane)",
19 "provider": "openai",
20 "model": "claude-sonnet-4-6",
21 "apiBase": "http://localhost:4100/v1",
22 "apiKey": "your-api-key"
23 }
24 ]
25}

Tab Autocomplete

For tab autocomplete, configure a fast model through RelayPlane:

1{
2 "tabAutocompleteModel": {
3 "title": "RelayPlane Fast",
4 "provider": "openai",
5 "model": "rp:fast",
6 "apiBase": "http://localhost:4100/v1",
7 "apiKey": "your-api-key"
8 }
9}
Tip: Use relayplane:auto for chat and rp:fast for tab autocomplete to balance quality and speed.