Last Updated: May 18, 2026Documentation Index
Fetch the complete documentation index at: https://docs.salad.com/llms.txt
Use this file to discover all available pages before exploring further.
Introduction
Cline is an open-source AI coding agent for VS Code that can create files, edit code, run terminal commands, execute bash commands, and more. It acts as an autonomous pair programmer that helps you build applications through natural language conversations. Cline works with SaladCloud in two ways:- Salad AI Gateway - no infrastructure to deploy or manage. Sign up for access, point Cline at a single shared endpoint, and use your Salad API key directly. Currently in closed beta.
- Self-hosted model - deploy your own SaladCloud container group 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 installed on your machine
Step-by-Step Setup
Step 1: Choose Your Salad 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.6-35b-a3b | Qwen 3.6 35B-A3B - best for agentic tasks, coding, and complex reasoning |
qwen3.6-27b | Qwen 3.6 27B - strong balance of capability and speed |
qwen3.5-9b | Qwen 3.5 9B - fastest response times, suited for lighter tasks |
Step 2: Install Cline in VS Code
- Open VS Code and go to the Extensions view (
Ctrl+Shift+XorCmd+Shift+Xon macOS) - Search for “Cline” or use the extension ID:
saoudrizwan.claude-dev - Click Install on the Cline extension
- Once installed, click the Cline icon in the sidebar to open the Cline panel
Step 3: Configure Cline
- In the Cline sidebar, click the gear icon (⚙️) to open settings
- Set API Provider to
OpenAI Compatible - Fill in the fields based on your chosen backend:
- Salad AI Gateway
- Self-Hosted on SaladCloud
- Base URL:
https://ai.salad.cloud/v1 - API Key: your Salad API key
- Model ID: e.g.
qwen3.6-35b-a3b
Step 4: Test the Connection
Start with a simple task to verify everything is working:“Create a hello world Python script that prints ‘Hello from SaladCloud!’”If Cline successfully creates and runs the file, your setup is complete.
Tips for Best Results
Use Incremental Prompting for Complex Tasks
When working on long agentic sessions, tell Cline to work in small steps and save after each one:“Important: Work incrementally. Do NOT try to write all files at once. Break this into small steps, create and save each file one at a time, and make sure each step works before moving on.”This reduces the chance of interrupted generations, makes it easier to recover from errors, and helps maintain context across multiple interactions.
Set a Generous Context Window
For self-hosted deployments, configure your LLM server with a context window of at least 16384 tokens, ideally 32768 or higher. The preconfigured recipes (e.g., Qwen 3.6-35B-A3B) already have optimal context window settings. AI Gateway models support up to 262,144 tokens.Model Recommendations
- Qwen 3.6-35B-A3B: Best for complex agentic tasks - excellent balance of capability and cost
- Qwen 3.5-9B: Good for lighter tasks and faster response times
This documentation page was created using Cline powered by an LLM model running on SaladCloud.