> Discover all available pages from the documentation index: https://mastra.zisheng.pro/zh-TW/llms.txt # ![Nebius Token Factory 標誌](https://models.dev/logos/nebius.svg)Nebius Token Factory 透過 Mastra 的模型路由器存取 33 個 Nebius Token Factory 模型。系統會自動使用 `NEBIUS_API_KEY` 環境變數完成身分驗證。 如需進一步了解,請參閱[Nebius Token Factory 文件](https://docs.tokenfactory.nebius.com/)。 ```bash NEBIUS_API_KEY=your-api-key ``` ```typescript import { Agent } from '@mastra/core/agent' const agent = new Agent({ id: 'my-agent', name: 'My Agent', instructions: 'You are a helpful assistant', model: 'nebius/MiniMaxAI/MiniMax-M2.5', }) // Generate a response const response = await agent.generate('Hello!') // Stream a response const stream = await agent.stream('Tell me a story') for await (const chunk of stream) { console.log(chunk) } ``` > **資訊:** Mastra 使用與 OpenAI 相容的 `/chat/completions` endpoint。部分 Provider 特有功能可能無法使用,詳情請參閱[Nebius Token Factory 文件](https://docs.tokenfactory.nebius.com/)。 ## 模型 | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M | | ------------------------------------------------ | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- | | `nebius/deepseek-ai/DeepSeek-V4-Pro` | 1.0M | | | | | | $2 | $4 | | `nebius/google/gemma-3-27b-it` | 110K | | | | | | $0.10 | $0.30 | | `nebius/meta-llama/Llama-3.3-70B-Instruct` | 128K | | | | | | $0.13 | $0.40 | | `nebius/MiniMaxAI/MiniMax-M2.5` | 197K | | | | | | $0.30 | $1 | | `nebius/MiniMaxAI/MiniMax-M3` | 1.0M | | | | | | $0.30 | $1 | | `nebius/moonshotai/Kimi-K2.7-Code` | 262K | | | | | | $0.95 | $4 | | `nebius/moonshotai/Kimi-K3` | 1.0M | | | | | | $3 | $15 | | `nebius/NousResearch/Hermes-4-405B` | 128K | | | | | | $1 | $3 | | `nebius/NousResearch/Hermes-4-70B` | 128K | | | | | | $0.13 | $0.40 | | `nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1` | 128K | | | | | | $0.60 | $2 | | `nebius/nvidia/Nemotron-3-Nano-Omni` | 66K | | | | | | $0.06 | $0.24 | | `nebius/nvidia/nemotron-3-super-120b-a12b` | 256K | | | | | | $0.30 | $0.90 | | `nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B` | 32K | | | | | | $0.06 | $0.24 | | `nebius/openai/gpt-oss-120b` | 128K | | | | | | $0.15 | $0.60 | | `nebius/Qwen/Qwen2.5-VL-72B-Instruct` | 128K | | | | | | $0.25 | $0.75 | | `nebius/Qwen/Qwen3-235B-A22B-Instruct-2507` | 262K | | | | | | $0.20 | $0.60 | | `nebius/Qwen/Qwen3-30B-A3B-Instruct-2507` | 128K | | | | | | $0.10 | $0.30 | | `nebius/Qwen/Qwen3-32B` | 128K | | | | | | $0.10 | $0.30 | | `nebius/Qwen/Qwen3-Embedding-8B` | 33K | | | | | | $0.01 | — | | `nebius/Qwen/Qwen3-Next-80B-A3B-Thinking` | 128K | | | | | | $0.15 | $1 | | `nebius/Qwen/Qwen3.5-397B-A17B` | 262K | | | | | | $0.60 | $4 | | `nebius/zai-org/GLM-5.2` | 432K | | | | | | $1 | $4 | ## 進階設定 ### 自訂標頭 ```typescript const agent = new Agent({ id: 'custom-agent', name: 'custom-agent', model: { url: 'https://api.tokenfactory.nebius.com/v1', id: 'nebius/MiniMaxAI/MiniMax-M2.5', apiKey: process.env.NEBIUS_API_KEY, headers: { 'X-Custom-Header': 'value', }, }, }) ``` ### 動態選擇模型 ```typescript const agent = new Agent({ id: 'dynamic-agent', name: 'Dynamic Agent', model: ({ requestContext }) => { const useAdvanced = requestContext.task === 'complex' return useAdvanced ? 'nebius/zai-org/GLM-5.2' : 'nebius/MiniMaxAI/MiniMax-M2.5' }, }) ```