Skip to content

Commit 21bf000

Browse files
authored
fix(genapi): add openai as continue provider plugin
1 parent dae714f commit 21bf000

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
6464
version: 0.0.1
6565
models:
6666
- name: Devstral - Scaleway
67-
provider: scaleway
67+
provider: openai
6868
model: devstral-small-2505
6969
apiBase: https://api.scaleway.ai/v1/
7070
apiKey: ###SCW_SECRET_KEY###
@@ -79,7 +79,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
7979
capabilities:
8080
- tool_use
8181
- name: Autocomplete - Scaleway
82-
provider: scaleway
82+
provider: openai
8383
model: qwen2.5-coder-32b
8484
apiBase: https://api.scaleway.ai/v1/
8585
apiKey: ###SCW_SECRET_KEY###
@@ -89,7 +89,7 @@ To link Continue with Scaleway's Generative APIs, you can configure a settings f
8989
roles:
9090
- autocomplete
9191
- name: Embeddings Model - Scaleway
92-
provider: scaleway
92+
provider: openai
9393
model: bge-multilingual-gemma2
9494
apiBase: https://api.scaleway.ai/v1/
9595
apiKey: ###SCW_SECRET_KEY###
@@ -129,19 +129,19 @@ Alternatively, a `config.json` file can be used with the following format. This
129129
{
130130
"model": "devstral-small-2505",
131131
"title": "Devstral - Scaleway",
132-
"provider": "scaleway",
132+
"provider": "openai",
133133
"apiKey": "###SCW_SECRET_KEY###"
134134
}
135135
],
136136
"embeddingsProvider": {
137137
"model": "bge-multilingual-gemma2",
138-
"provider": "scaleway",
138+
"provider": "openai",
139139
"apiKey": "###SCW_SECRET_KEY###"
140140
},
141141
"tabAutocompleteModel": {
142142
"model": "qwen2.5-coder-32b",
143143
"title": "Autocomplete - Scaleway",
144-
"provider": "scaleway",
144+
"provider": "openai",
145145
"apiKey": "###SCW_SECRET_KEY###"
146146
}
147147
}

0 commit comments

Comments
 (0)