OpenAdapterOpenAdapter
Integrations

Continue.dev

Point the Continue.dev VS Code / JetBrains extension at OpenAdapter.

Continue is configured via a single YAML file.

Setup

  1. Install the Continue extension from the VS Code marketplace (or JetBrains plugin marketplace).
  2. Open ~/.continue/config.yaml (Windows: %USERPROFILE%\.continue\config.yaml). Create it if it doesn't exist.
  3. Paste the config below, replacing YOUR_API_KEY:
name: OpenAdapter
version: 1.0.0
schema: v1

models:
  - name: GLM-4.7
    provider: openai
    model: GLM-4.7
    apiBase: https://api.openadapter.in/v1
    apiKey: YOUR_API_KEY
    roles:
      - chat
      - edit
      - apply

  - name: glm-4.7
    provider: openai
    model: glm-4.7
    apiBase: https://api.openadapter.in/v1
    apiKey: YOUR_API_KEY
    roles:
      - chat
      - edit
      - apply

  - name: Qwen3 Embedding Small
    provider: openai
    model: qwen3-embedding-small
    apiBase: https://api.openadapter.in/v1
    apiKey: YOUR_API_KEY
    roles:
      - embed
  1. Save — Continue picks up changes automatically.

Notes

  • The embed role enables codebase indexing for in-repo @-mentions.
  • Add more chat-model entries as needed; the alias must match what your gateway plan exposes.
  • See the Dashboard → Models page for the full list.

On this page