llmrelay
// 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-4-6
Route
openai-compatible
On llmrelay
$1.5/M · $7.5/M

Setup

  1. 1 Install Continue from the marketplace.
  2. 2 Open ~/.continue/config.json.
  3. 3 Add a new model entry (see snippet).
  4. 4 Reload the Continue panel.

Config

// ~/.continue/config.json
{
  "models": [
    {
      "title": "Claude Sonnet 4.6 (llmrelay)",
      "provider": "openai",
      "model": "claude-sonnet-4-6",
      "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-4-6","messages":[{"role":"user","content":"say hi"}]}'

You need an llmrelay key first

Sign up in about 30 seconds. New accounts get $0.20 in free credit — enough to smoke-test every model.

Related integrations