Back to Continue

Nebius

docs/customize/model-providers/more/nebius.mdx

1.5.451.4 KB
Original Source

You can get an API key from the Nebius AI Studio API keys page

Available Models

Available models can be found on the Nebius AI Studio models page

Chat Model

<Tabs> <Tab title="YAML"> ```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1

models: - name: DeepSeek R1 provider: nebius model: deepseek-ai/DeepSeek-R1 apiKey: <YOUR_NEBIUS_API_KEY>

</Tab>
<Tab title="JSON">
```json title="config.json"
{
  "models": [
    {
      "title": "DeepSeek R1",
      "provider": "nebius",
      "model": "deepseek-ai/DeepSeek-R1",
      "apiKey": "<YOUR_NEBIUS_API_KEY>"
    }
  ]
}
</Tab> </Tabs>

Embeddings Model

Available models can be found on the Nebius AI Studio embeddings page

<Tabs> <Tab title="YAML"> ```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1

models: - name: BAAI Embedder provider: nebius model: BAAI/bge-en-icl apiKey: <YOUR_NEBIUS_API_KEY> roles: - embed

</Tab>
<Tab title="JSON">
```json title="config.json"
{
  "embeddingsProvider": {
    "provider": "nebius",
    "model": "BAAI/bge-en-icl",
    "apiKey": "<YOUR_NEBIUS_API_KEY>"
  }
}
</Tab> </Tabs>