Gondolabeta
Guides

Continue

Add Gondola to Continue's config.yaml for chat, edit, and autocomplete across the full Venice catalog, paid per request in USDC on Base.

1

Create an API key

Sign in with your Base wallet at /keys and mint a Gondola API key. Keys start with gnd_. It authenticates every request and each call is charged in USDC against your Gondola balance.

Top up USDC on Base once at /wallet. The same balance powers the browser chat and every tool you connect.

2

Point Continue at Gondola

Continue has no dedicated OpenAI-compatible type, so use provider: openai with an apiBase override. Edit ~/.continue/config.yaml and add one entry per model, with the roles you want each to serve:

~/.continue/config.yaml
name: My Config
version: 0.0.1
schema: v1

models:
  - name: Gondola Claude Sonnet 5
    provider: openai
    model: claude-sonnet-5
    apiBase: https://api.gondola-ai.com/v1
    apiKey: gnd_live_xxxx
    roles:
      - chat
      - edit
      - apply

  - name: Gondola Qwen3 Coder
    provider: openai
    model: qwen3-coder-480b-a35b-instruct-turbo
    apiBase: https://api.gondola-ai.com/v1
    apiKey: gnd_live_xxxx
    roles:
      - autocomplete
Base URL gotcha
Set apiBase to api.gondola-ai.com/v1 only. Do not append /chat/completions; Continue adds the path itself.
3

Pick a model

Gondola serves the full Venice catalog. The model value must match the catalog id exactly, so pull the live list:

shell
curl https://api.gondola-ai.com/v1/models

Example ids today include claude-sonnet-5 and qwen3-coder-480b-a35b-instruct-turbo, but always confirm against the live list, since the catalog changes. Each entry also reports context_length and max_completion_tokens if you need them.

4

Notes and troubleshooting

Give autocomplete its own entry
Autocomplete needs a separate model entry with roles: [autocomplete]. Route a coding model to it, not a general chat model: chat models produce poor fill-in-the-middle completions, per Continue's docs.

Streaming is implicit, so there is nothing to toggle. If a request returns insufficient balance, top up at /wallet.

Keep going
All setup guidesCline guideCursor guideLive prices