- Open VS Code
- Go to Extensions (Ctrl+Shift+X)
- Search for "Cline" and install
Add to VS Code settings.json:
{
"cline.customModel": "qwen3-coder",
"cline.customEndpoint": "https://your-runpod-endpoint.runpod.io/v1",
"cline.customApiKey": "YOUR_API_KEY_HERE"
}Set in your terminal:
export OPENAI_API_KEY="YOUR_API_KEY_HERE"
export OPENAI_BASE_URL="https://your-runpod-endpoint.runpod.io/v1"# Test API access
curl https://your-runpod-endpoint.runpod.io/v1/models \
-H "Authorization: Bearer YOUR_API_KEY_HERE"- Code explanation: Select code and ask Cline to explain
- Code generation: Ask Cline to write functions, classes, or scripts
- Bug fixing: Highlight problematic code and ask for fixes
- Code optimization: Request performance improvements
- Documentation: Generate docstrings and comments