Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -59,7 +59,7 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
- Otherwise, create a `config.yaml` file inside your `.continue` directory.
- Add the following configuration to enable Scaleway's Generative API. This configuration uses three different models for each task:
- `devstral-small-2505` for agentic workflows through a chat interface
- `qwen2.5-coder-32b` for autocompletion when editing a file
- `qwen2.5-coder-32b-instruct` for autocompletion when editing a file
- `bge-multilingual-gemma2` for embedding and retrieving code context
```yaml
name: Continue Config
Expand All @@ -82,7 +82,7 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
- tool_use
- name: Autocomplete - Scaleway
provider: openai
model: qwen2.5-coder-32b
model: qwen2.5-coder-32b-instruct
apiBase: https://api.scaleway.ai/v1/
apiKey: ###SCW_SECRET_KEY###
defaultCompletionOptions:
Expand Down Expand Up @@ -141,7 +141,7 @@ Alternatively, a `config.json` file can be used with the following format. Note
"apiKey": "###SCW_SECRET_KEY###"
},
"tabAutocompleteModel": {
"model": "qwen2.5-coder-32b",
"model": "qwen2.5-coder-32b-instruct",
"title": "Autocomplete - Scaleway",
"provider": "openai",
"apiKey": "###SCW_SECRET_KEY###"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
- Otherwise, create a `config.yaml` file inside your `.continue` directory.
- Add the following configuration to enable Scaleway's Generative API. This configuration uses three different models for each tasks:
- `devstral-small-2505` for agentic workflows through a chat interface
- `qwen2.5-coder-32b` for autocompletion when editing a file
- `qwen2.5-coder-32b-instruct` for autocompletion when editing a file
- `bge-multilingual-gemma2` for embedding and retrieving code context
```yaml
name: Continue Config
Expand All @@ -80,7 +80,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
- tool_use
- name: Autocomplete - Scaleway
provider: openai
model: qwen2.5-coder-32b
model: qwen2.5-coder-32b-instruct
apiBase: https://api.scaleway.ai/v1/
apiKey: ###SCW_SECRET_KEY###
defaultCompletionOptions:
Expand Down Expand Up @@ -139,7 +139,7 @@ Alternatively, a `config.json` file can be used with the following format. Note
"apiKey": "###SCW_SECRET_KEY###"
},
"tabAutocompleteModel": {
"model": "qwen2.5-coder-32b",
"model": "qwen2.5-coder-32b-instruct",
"title": "Autocomplete - Scaleway",
"provider": "openai",
"apiKey": "###SCW_SECRET_KEY###"
Expand Down