Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,25 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
For more details on configuring `config.json`, refer to the [official Continue documentation](https://docs.continue.dev/reference).
</Message>

### Configuring tab completion

To enable AI-powered tab completion in Continue, add the following configuration to your `.continue/config.json`:

```json
{
"tabAutocompleteModel": {
"title": "Scaleway",
"provider": "scaleway",
"model": "qwen2.5-coder-32b-instruct",
"apiKey": "###SCW_SECRET_KEY###"
}
}
```

<Message type="important">
Enabling tab completion **may lead to higher token consumption** as the model generates predictions for every keystroke. Be mindful of your API usage and adjust settings accordingly to avoid unexpected costs.
</Message>

### Activate Continue in IntelliJ IDEA

After configuring the API, activate Continue in IntelliJ IDEA:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,26 @@ To link Continue with Scaleway's Generative APIs, you need to configure a settin
For more details on configuring `config.json`, refer to the [official Continue documentation](https://docs.continue.dev/reference).
</Message>

### Activate Continue in VS Code
### Configuring tab completion

To enable AI-powered tab completion in Continue, add the following configuration to your `.continue/config.json`:

```json
{
"tabAutocompleteModel": {
"title": "Scaleway",
"provider": "scaleway",
"model": "qwen2.5-coder-32b-instruct",
"apiKey": "###SCW_SECRET_KEY###"
}
}
```

<Message type="important">
Enabling tab completion **may lead to higher token consumption** as the model generates predictions for every keystroke. Be mindful of your API usage and adjust settings accordingly to avoid unexpected costs.
</Message>

### Activating Continue in VS Code

After configuring the API, open VS Code and activate Continue:

Expand Down