// IDE Plugin
Use Continue with llmrelay
The open-source Cursor alternative for VS Code and JetBrains. Point it at api.llmrelay.dev and get the same models at half the price.
Recommended model
claude-sonnet-5
Route
openai-compatible
On llmrelay
$1/M · $5/M
Setup
- 1 Install Continue from the marketplace.
- 2 Open ~/.continue/config.json.
- 3 Add a new model entry (see snippet).
- 4 Reload the Continue panel.
Config
// ~/.continue/config.json
{
"models": [
{
"title": "Claude Sonnet 5 (llmrelay)",
"provider": "openai",
"model": "claude-sonnet-5",
"apiKey": "sk-llmrelay-...",
"apiBase": "https://api.llmrelay.dev/v1"
}
]
} Smoke test
Copy, paste, run. If you get JSON back with a message, you're good.
curl https://api.llmrelay.dev/v1/chat/completions \
-H "Authorization: Bearer $LLMRELAY_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"claude-sonnet-5","messages":[{"role":"user","content":"say hi"}]}' You need an llmrelay key first
Sign up in about 30 seconds — free to create an account, no subscription, $10 minimum top-up.