From b1c8d7c5ba866dd575c50082271a80042994e9ff Mon Sep 17 00:00:00 2001 From: Quentin Champenois Date: Tue, 2 Jun 2026 16:55:03 +0200 Subject: [PATCH 1/3] fix: update Scaleway models list --- core/llm/llms/Scaleway.ts | 14 ++++++++------ docs/customize/model-providers/more/scaleway.mdx | 12 ++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/core/llm/llms/Scaleway.ts b/core/llm/llms/Scaleway.ts index 4f308dc0cd4..0420c156c13 100644 --- a/core/llm/llms/Scaleway.ts +++ b/core/llm/llms/Scaleway.ts @@ -7,22 +7,24 @@ class Scaleway extends OpenAI { static providerName = "scaleway"; static defaultOptions: Partial = { apiBase: "https://api.scaleway.ai/v1/", - model: "qwen3-coder-30b-a3b-instruct", + model: "qwen3.6-35b-a3b", useLegacyCompletionsEndpoint: false, }; private static MODEL_IDS: { [name: string]: string } = { - "llama3.1-8b": "llama-3.1-8b-instruct", "llama3.3-70b": "llama-3.3-70b-instruct", "pixtral-12b": "pixtral-12b-2409", - "mistral-small3.1": "mistral-small-3.1-24b-instruct-2503", "mistral-small3.2": "mistral-small-3.2-24b-instruct-2506", - "devstral-small": "devstral-small-2505", - "deepseek-r1-distill-llama-70b": "deepseek-r1-distill-llama-70b", - "qwen2.5-coder-32b": "qwen2.5-coder-32b-instruct", + "mistral-medium3.5": "mistral-medium-3.5-128b", + "devstral-2": "devstral-2-123b-instruct-2512", "qwen3-coder-30b-a3b": "qwen3-coder-30b-a3b-instruct", "qwen3-235b-a22b": "qwen3-235b-a22b-instruct-2507", + "qwen3.5-397b-a17b": "qwen3.5-397b-a17b", + "qwen3.6-35b-a3b": "qwen3.6-35b-a3b", "gemma-3-27b": "gemma-3-27b-it", + "gemma-4-26b-a4b": "gemma-4-26b-a4b-it", + "bge-multilingual-gemma2": "bge-multilingual-gemma2", + "qwen3-embedding-8b": "qwen3-embedding-8b", "gpt-oss-120b": "gpt-oss-120b", }; diff --git a/docs/customize/model-providers/more/scaleway.mdx b/docs/customize/model-providers/more/scaleway.mdx index 0e054ae6af4..879f653705a 100644 --- a/docs/customize/model-providers/more/scaleway.mdx +++ b/docs/customize/model-providers/more/scaleway.mdx @@ -1,6 +1,6 @@ --- title: "Scaleway" -description: "Configure Scaleway Generative APIs with Continue to access AI models hosted in European data centers, offering low latency, data privacy, and EU AI Act compliance with models like Qwen2.5-Coder and BGE-Multilingual-Gemma2" +description: "Configure Scaleway Generative APIs with Continue to access AI models hosted in European data centers, offering low latency, data privacy, and EU AI Act compliance with models like Qwen3.5-397b, Gemma-4-26b" --- @@ -14,7 +14,7 @@ description: "Configure Scaleway Generative APIs with Continue to access AI mode ## Chat Model -We recommend configuring **Qwen2.5-Coder-32B-Instruct** as your chat model. +We recommend configuring **Qwen3.6-35b-a3b** as your chat model. [Click here](https://www.scaleway.com/en/docs/ai-data/generative-apis/reference-content/supported-models/) to see the list of available chat models. @@ -25,9 +25,9 @@ We recommend configuring **Qwen2.5-Coder-32B-Instruct** as your chat model. schema: v1 models: - - name: Qwen2.5-Coder-32B-Instruct + - name: Qwen3.6-35b-a3b provider: scaleway - model: qwen2.5-coder-32b-instruct + model: Qwen3.6-35b-a3b apiKey: ``` @@ -36,9 +36,9 @@ We recommend configuring **Qwen2.5-Coder-32B-Instruct** as your chat model. { "models": [ { - "title": "Qwen2.5-Coder-32B-Instruct", + "title": "Qwen3.6-35b-a3b", "provider": "scaleway", - "model": "qwen2.5-coder-32b-instruct", + "model": "Qwen3.6-35b-a3b", "apiKey": "" } ] From 4d0ea138ceeb82800c861e1288081e08597ac5fd Mon Sep 17 00:00:00 2001 From: Quentin Champenois Date: Thu, 4 Jun 2026 18:47:06 +0200 Subject: [PATCH 2/3] chore: trigger ci From 7ce6e6d92e5710c5a979fd51c44d33c048fffb00 Mon Sep 17 00:00:00 2001 From: Quentin Champenois Date: Thu, 4 Jun 2026 18:51:32 +0200 Subject: [PATCH 3/3] chore: trigger CLA assistant