From cf9a87c0138363e68f657f2f70fb7b23e8a256ed Mon Sep 17 00:00:00 2001 From: fpagny Date: Tue, 5 Aug 2025 15:03:01 +0200 Subject: [PATCH 1/2] fix(genapi): autocomplete model name --- .../adding-ai-to-vscode-using-continue.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx b/pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx index a12fbf4487..ace88f79f0 100644 --- a/pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx +++ b/pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx @@ -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 @@ -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: @@ -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###" From 639f029c168ba9c78878694b260b78d23968e179 Mon Sep 17 00:00:00 2001 From: fpagny Date: Tue, 5 Aug 2025 15:04:28 +0200 Subject: [PATCH 2/2] fix(genapi): model name in continue snippets --- .../adding-ai-to-intellij-using-continue.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx b/pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx index 7a925e0175..b8e462658e 100644 --- a/pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx +++ b/pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx @@ -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 @@ -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: @@ -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###"