@@ -56,21 +56,21 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
5656 - If you have already configured a ** Local Assistant** , click ** Local Assistant** then click the ** wheel icon** to open your existing ` config.yaml `
5757 - Otherwise, create a ` config.yaml ` file inside your ` .continue ` directory.
5858- Add the following configuration to enable Scaleway's Generative API. This configuration uses three different models for each task:
59- - ` devstral-small-2505 ` for agentic workflows through a chat interface
60- - ` qwen2.5 -coder-32b -instruct` for autocompletion when editing a file
59+ - ` qwen3-235b-a22b-instruct-2507 ` for agentic workflows through a chat interface ( ` qwen3-coder-30b-a3b-instruct ` can also be used)
60+ - ` qwen3 -coder-30b-a3b -instruct` for autocompletion when editing a file
6161 - ` bge-multilingual-gemma2 ` for embedding and retrieving code context
6262 ``` yaml
6363 name : Continue Config
6464 version : 0.0.1
6565 models :
66- - name : Devstral - Scaleway
66+ - name : Qwen3 235B - Scaleway
6767 provider : openai
68- model : devstral-small-2505
68+ model : qwen3-235b-a22b-instruct-2507
6969 apiBase : https://api.scaleway.ai/v1/
7070 apiKey : # ##SCW_SECRET_KEY###
7171 defaultCompletionOptions :
72- maxTokens : 8000
73- contextLength : 50000
72+ maxTokens : 4000
73+ contextLength : 40000
7474 roles :
7575 - chat
7676 - apply
@@ -80,12 +80,12 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
8080 - tool_use
8181 - name : Autocomplete - Scaleway
8282 provider : openai
83- model : qwen2.5 -coder-32b -instruct
83+ model : qwen3 -coder-30b-a3b -instruct
8484 apiBase : https://api.scaleway.ai/v1/
8585 apiKey : # ##SCW_SECRET_KEY###
8686 defaultCompletionOptions :
8787 maxTokens : 8000
88- contextLength : 50000
88+ contextLength : 100000
8989 roles :
9090 - autocomplete
9191 - name : Embeddings Model - Scaleway
@@ -127,8 +127,8 @@ Alternatively, a `config.json` file can be used with the following format. Note
127127{
128128 "models": [
129129 {
130- "model": "devstral-small-2505 ",
131- "title": "Devstral - Scaleway",
130+ "model": "qwen3-235b-a22b-instruct-2507 ",
131+ "title": "Qwen3 235B - Scaleway",
132132 "provider": "openai",
133133 "apiKey": "###SCW_SECRET_KEY###"
134134 }
@@ -139,7 +139,7 @@ Alternatively, a `config.json` file can be used with the following format. Note
139139 "apiKey": "###SCW_SECRET_KEY###"
140140 },
141141 "tabAutocompleteModel": {
142- "model": "qwen2.5 -coder-32b -instruct",
142+ "model": "qwen3 -coder-30b-a3b -instruct",
143143 "title": "Autocomplete - Scaleway",
144144 "provider": "openai",
145145 "apiKey": "###SCW_SECRET_KEY###"
0 commit comments