Introduction
Continue is an open-source AI coding assistant for VS Code and JetBrains. Unlike pure agentic tools, Continue focuses on the full coding workflow: autocomplete, inline chat, codebase-aware Q&A, and multi-file edits. Supports any OpenAI-compatible endpoint with custom headers. Continue works with SaladCloud in two ways:- Salad AI Gateway - no infrastructure to deploy or manage. Sign up for access, point Continue at a single shared endpoint, and use your Salad API key directly. Currently in closed beta, available via monthly subscription.
- Self-hosted model - deploy your own SaladCloud container group, billed per hour, for full control over the model, hardware, and configuration. Still very easy to set up and use.
Prerequisites
Before getting started, make sure you have:- A SaladCloud account
- VS Code or JetBrains IDE installed
Step-by-Step Setup
Step 1: Choose Your Backend
- Salad AI Gateway
- Self-Hosted on SaladCloud
Salad AI Gateway is the fastest way to get started - no container groups to deploy, no cold starts to wait for.
- Sign up for early access at salad.com/ai-gateway.
- Once approved, find your Salad API key in the portal.
| Model | Description |
|---|---|
qwen3.5-35b-a3b | Qwen 3.5 35B Mixture of Experts - best for agentic tasks and complex reasoning |
qwen3.5-27b | Qwen 3.5 27B - strong balance of capability and speed |
qwen3.5-9b | Qwen 3.5 9B - fastest response times, suited for lighter tasks |
Step 2: Install Continue
VS Code:- Open the Extensions view (
Ctrl+Shift+XorCmd+Shift+X) - Search for Continue
- Click Install on the Continue extension by Continue Dev
- Once installed, click the Continue icon in the sidebar
Step 3: Configure Continue to Use Your SaladCloud Endpoint
Continue is configured via~/.continue/config.yaml. Open it from the Continue panel by clicking the gear icon, or edit
it directly. The configuration UI does not currently support all necessary fields, so you will need to add the model
config manually in the YAML file.
- Salad AI Gateway
- Self-Hosted on SaladCloud
Add your AI Gateway model:No custom headers are needed - your Salad API key in
apiKey is all that’s required.Step 4: Test the Connection
Reload VS Code (Ctrl+Shift+P → Reload Window), then open the Continue chat panel and ask:
“Summarize what this project does in one sentence.”If Continue responds, your setup is complete.
Tips for Best Results
Set Context Window
AddcontextLength to your model config to help Continue manage prompt sizes correctly:
Handle Autocomplete Timeouts
SaladCloud has a 100-second request timeout. Autocomplete requests are short and typically complete well within this limit, but for large context windows, consider setting a shortermaxTokens for autocomplete to reduce latency:
Model Recommendations
- Qwen 3.5-35B-A3B: Best for chat, codebase Q&A, and multi-file edits
- Qwen 3.5-9B: Fast enough for autocomplete; good balance of latency and quality