Skip to content

Commit 8acba5e

Browse files
authored
fix(genapi): autocomplete model name (#5376)
* fix(genapi): autocomplete model name * fix(genapi): model name in continue snippets
1 parent 2fcc3ad commit 8acba5e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
5959
- Otherwise, create a `config.yaml` file inside your `.continue` directory.
6060
- Add the following configuration to enable Scaleway's Generative API. This configuration uses three different models for each task:
6161
- `devstral-small-2505` for agentic workflows through a chat interface
62-
- `qwen2.5-coder-32b` for autocompletion when editing a file
62+
- `qwen2.5-coder-32b-instruct` for autocompletion when editing a file
6363
- `bge-multilingual-gemma2` for embedding and retrieving code context
6464
```yaml
6565
name: Continue Config
@@ -82,7 +82,7 @@ To link Continue with Scaleway’s Generative APIs, you need to configure the se
8282
- tool_use
8383
- name: Autocomplete - Scaleway
8484
provider: openai
85-
model: qwen2.5-coder-32b
85+
model: qwen2.5-coder-32b-instruct
8686
apiBase: https://api.scaleway.ai/v1/
8787
apiKey: ###SCW_SECRET_KEY###
8888
defaultCompletionOptions:
@@ -141,7 +141,7 @@ Alternatively, a `config.json` file can be used with the following format. Note
141141
"apiKey": "###SCW_SECRET_KEY###"
142142
},
143143
"tabAutocompleteModel": {
144-
"model": "qwen2.5-coder-32b",
144+
"model": "qwen2.5-coder-32b-instruct",
145145
"title": "Autocomplete - Scaleway",
146146
"provider": "openai",
147147
"apiKey": "###SCW_SECRET_KEY###"

pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
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 tasks:
5959
- `devstral-small-2505` for agentic workflows through a chat interface
60-
- `qwen2.5-coder-32b` for autocompletion when editing a file
60+
- `qwen2.5-coder-32b-instruct` for autocompletion when editing a file
6161
- `bge-multilingual-gemma2` for embedding and retrieving code context
6262
```yaml
6363
name: Continue Config
@@ -80,7 +80,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
8080
- tool_use
8181
- name: Autocomplete - Scaleway
8282
provider: openai
83-
model: qwen2.5-coder-32b
83+
model: qwen2.5-coder-32b-instruct
8484
apiBase: https://api.scaleway.ai/v1/
8585
apiKey: ###SCW_SECRET_KEY###
8686
defaultCompletionOptions:
@@ -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",
142+
"model": "qwen2.5-coder-32b-instruct",
143143
"title": "Autocomplete - Scaleway",
144144
"provider": "openai",
145145
"apiKey": "###SCW_SECRET_KEY###"

0 commit comments

Comments
 (0)