豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Latest commit

 

History

History
75 lines (65 loc) · 1.55 KB

File metadata and controls

75 lines (65 loc) · 1.55 KB
title Nebius
description Configure Nebius AI Studio with Continue to access their language model offerings, including DeepSeek R1 for chat and BAAI embeddings models

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

```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>"
    }
  ]
}

Embeddings Model

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

```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>"
  }
}