docs/customize/model-providers/more/scaleway.mdx
We recommend configuring Qwen2.5-Coder-32B-Instruct as your chat model. Click here to see the list of available chat models.
<Tabs> <Tab title="YAML"> ```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1models:
- name: Qwen2.5-Coder-32B-Instruct
provider: scaleway
model: qwen2.5-coder-32b-instruct
apiKey: <YOUR_SCALEWAY_API_KEY>
```
</Tab>
<Tab title="JSON">
```json title="config.json"
{
"models": [
{
"title": "Qwen2.5-Coder-32B-Instruct",
"provider": "scaleway",
"model": "qwen2.5-coder-32b-instruct",
"apiKey": "<YOUR_SCALEWAY_API_KEY>"
}
]
}
```
</Tab>
Scaleway currently does not offer any autocomplete models.
Click here to see a list of autocomplete model providers.
We recommend configuring BGE-Multilingual-Gemma2 as your embeddings model.
<Tabs> <Tab title="YAML"> ```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1models: - name: BGE Multilingual Gemma2 provider: scaleway model: bge-multilingual-gemma2 apiKey: <YOUR_SCALEWAY_API_KEY> roles: - embed
</Tab>
<Tab title="JSON">
```json title="config.json"
{
"embeddingsProvider": {
"provider": "scaleway",
"model": "bge-multilingual-gemma2",
"apiKey": "<YOUR_SCALEWAY_API_KEY>"
}
}