Continue

Add LLMRPM models to the Continue VS Code / JetBrains extension.

Configuration

SettingValue
API shapeOpenAI-compatible
Base URLhttps://llmrpm.com/api/v1
AuthAuthorization: Bearer llmrpm_...
  • Open config.json from Continue settings.
  • Set every model provider to openai.
  • Set apiBase to https://llmrpm.com/api/v1.
  • Use tabAutocompleteModel with a faster low-cost model if you enable autocomplete.

Example

config.json
{
  "models": [
    {
      "title": "LLMRPM Sonnet",
      "provider": "openai",
      "model": "claude-sonnet-5",
      "apiBase": "https://llmrpm.com/api/v1",
      "apiKey": "llmrpm_YOUR_KEY"
    },
    {
      "title": "LLMRPM Fast",
      "provider": "openai",
      "model": "claude-haiku-4.5",
      "apiBase": "https://llmrpm.com/api/v1",
      "apiKey": "llmrpm_YOUR_KEY"
    }
  ],
  "tabAutocompleteModel": {
    "title": "LLMRPM Fast",
    "provider": "openai",
    "model": "claude-haiku-4.5",
    "apiBase": "https://llmrpm.com/api/v1",
    "apiKey": "llmrpm_YOUR_KEY"
  }
}

Troubleshooting

SymptomCause & fix
Authentication errorCheck that the API key has no extra spaces and has not been revoked in the dashboard.
Model rejectedUse a public model ID returned by GET /api/v1/models; do not use display names or aliases.
Connection issueConfirm the configured base URL is exactly the one shown above and that your network allows HTTPS to llmrpm.com.

Notes

  • Continue can hold multiple LLMRPM models in the same config.
  • Reload the IDE after editing config.json.
  • Invalid JSON or trailing commas can prevent models from appearing.