Skip to main content
Nebius provides AI models — including popular open models such as DeepSeek, Qwen, and Llama — through an OpenAI-compatible API. docker-agent includes built-in support for Nebius as an alias provider.

Setup

  1. Get an API key from nebius.ai.
  2. Set the environment variable:
export NEBIUS_API_KEY="your-api-key"

Configuration

agents:
  root:
    model: nebius/deepseek-ai/DeepSeek-V3
    description: Assistant using Nebius
    instruction: You are a helpful assistant.

Available models

Nebius hosts a variety of open models. Check the Nebius documentation for the current catalog.
ModelDescription
deepseek-ai/DeepSeek-V3DeepSeek V3
moonshotai/Kimi-K2-InstructKimi K2 instruction-tuned
Qwen/Qwen2.5-72B-InstructQwen 2.5 72B instruction-tuned
meta-llama/Llama-3.3-70B-InstructLlama 3.3 70B instruction-tuned

How it works

Nebius is a built-in alias provider:
  • API type: openai_chatcompletions
  • Base URL: https://api.studio.nebius.ai/v1
  • Token variable: NEBIUS_API_KEY

Example: code assistant

agents:
  coder:
    model: nebius/deepseek-ai/DeepSeek-V3
    description: Code assistant using DeepSeek
    instruction: |
      You are an expert programmer using DeepSeek V3.
      Write clean, well-documented code.
      Follow best practices for the language being used.
    toolsets:
      - type: filesystem
      - type: shell
      - type: think

Build docs developers (and LLMs) love