Continue

Setup

Edit ~/.continue/config.json (or %USERPROFILE%\.continue\config.json on Windows):

{
  "models": [
    {
      "title": "VibeCC gpt-4o",
      "provider": "openai",
      "model": "gpt-4o",
      "apiKey": "vcc_your_key_here",
      "apiBase": "https://gateway.vibecc.dev/v1"
    }
  ]
}

Reload VS Code or JetBrains IDE to apply. Select VibeCC gpt-4o from the Continue model picker.

Multiple Models

Add multiple entries to the models array to switch between aliases:

{
  "models": [
    {
      "title": "VibeCC gpt-4o",
      "provider": "openai",
      "model": "gpt-4o",
      "apiKey": "vcc_your_key_here",
      "apiBase": "https://gateway.vibecc.dev/v1"
    },
    {
      "title": "VibeCC gpt-4o-mini",
      "provider": "openai",
      "model": "gpt-4o-mini",
      "apiKey": "vcc_your_key_here",
      "apiBase": "https://gateway.vibecc.dev/v1"
    }
  ]
}