Nebius AI Studio
You can get an API key from the Nebius AI Studio API keys page
Availible models
Available models can be found on the Nebius AI Studio models page
Chat model
- YAML
- JSON
config.yaml
models:
- name: DeepSeek R1
provider: nebius
model: deepseek-ai/DeepSeek-R1
apiKey: <YOUR_NEBIUS_API_KEY>
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
- JSON
config.yaml
models:
- name: BAAI Embedder
provider: nebius
model: BAAI/bge-en-icl
apiKey: <YOUR_NEBIUS_API_KEY>
roles:
- embed
config.json
{
"embeddingsProvider": {
"provider": "nebius",
"model": "BAAI/bge-en-icl",
"apiKey": "<YOUR_NEBIUS_API_KEY>"
}
}