Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions core/llm/llms/Scaleway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,24 @@ class Scaleway extends OpenAI {
static providerName = "scaleway";
static defaultOptions: Partial<LLMOptions> = {
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",
};

Expand Down
12 changes: 6 additions & 6 deletions docs/customize/model-providers/more/scaleway.mdx
Original file line number Diff line number Diff line change
@@ -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"
---

<Info>
Expand All @@ -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.

<Tabs>
Expand All @@ -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: <YOUR_SCALEWAY_API_KEY>
```
</Tab>
Expand All @@ -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": "<YOUR_SCALEWAY_API_KEY>"
}
]
Expand Down
Loading