Skip to main content

⚡️ Quickstart

VS Code

  1. Click Install on the Continue extension in the Visual Studio Marketplace

  2. This will open the Continue extension page in VS Code, where you will need to click Install again

  3. Once you do this, you will see the Continue logo show up on the left side bar. If you click it, the Continue extension will open up:

We strongly recommend moving Continue to VS Code's right sidebar. This helps keep the file explorer open while using Continue, and the sidebar can be toggled with a simple keyboard shortcut. move-to-right-sidebar

Replace <API_KEY> with your PlataformIA API key. If you don't have one yet you can create one here.

~/.continue/config.json
{
"models": [
{
"title": "Supercode",
"model": "starlight",
"provider": "openai",
"contextLength": 128000,
"systemMessage": "You are an expert software AI assistant designed by Gsoft. You give helpful and concise responses.",
"apiKey": "YOUR_API_KEY",
"apiBase": "https://apigateway.avangenio.net/"
}
],
"customCommands": [
{
"name": "test",
"prompt": "{{{ input }}}\n\nWrite a comprehensive set of unit tests for the selected code. It should setup, run tests that check for correctness including important edge cases, and teardown. Ensure that the tests are complete and sophisticated. Give the tests just as chat output, don't edit any file.",
"description": "Write unit tests for highlighted code"
}
],
"tabAutocompleteModel": {
"title": "Spark Autocomplete",
"model": "spark-code",
"provider": "openai",
"apiKey": "YOUR_API_KEY",
"apiBase": "https://apigateway.avangenio.net/"
},
"tabAutocompleteOptions": {
"multilineCompletions": "always"
},
"embeddingsProvider": {
"model": "embeddings",
"provider": "openai",
"apiKey": "YOUR_API_KEY",
"apiBase": "https://apigateway.avangenio.net/"
},
"allowAnonymousTelemetry": false
}

How to select AI models

Note

To do