> ## Documentation Index
> Fetch the complete documentation index at: https://docs2.openclaw.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# NovitaAI

NovitaAI 是托管式 AI 基础设施提供商，提供 OpenAI 兼容 API。
它作为内置的 OpenClaw 提供商交付（无需单独安装插件），因此
凭证会走常规模型认证流程，模型引用看起来像
`novita/deepseek/deepseek-v3-0324`。

## 设置

在 [novita.ai/settings/key-management](https://novita.ai/settings/key-management) 创建 API 密钥，然后运行：

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw onboard --auth-choice novita-api-key
```

或者设置：

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
export NOVITA_API_KEY="<your-novita-api-key>" # pragma: allowlist secret
```

## 默认值

| 设置     | 值                                  |
| ------ | ---------------------------------- |
| 提供商 ID | `novita`                           |
| 别名     | `novita-ai`, `novitaai`            |
| 基础 URL | `https://api.novita.ai/openai/v1`  |
| 环境变量   | `NOVITA_API_KEY`                   |
| 默认模型   | `novita/deepseek/deepseek-v3-0324` |

## 内置模型目录

* `novita/moonshotai/kimi-k2.5`
* `novita/minimax/minimax-m2.7`
* `novita/zai-org/glm-5`
* `novita/deepseek/deepseek-v3-0324`
* `novita/deepseek/deepseek-r1-0528`
* `novita/qwen/qwen3-235b-a22b-fp8`

这是一个起点，不是实时目录。你的账户、区域或
Novita 当前产品可能会新增、移除或限制路由。在
设置长期默认值前请先检查：

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw models list --provider novita
```

## 何时选择 Novita

* 通过 OpenAI 兼容 API 访问托管式开放权重模型。
* 通过单一提供商账户使用 DeepSeek、Kimi、MiniMax、GLM 或 Qwen 系列路由。
* 在 DeepInfra、GMI、OpenRouter 或直接厂商 API 之外，获得另一条托管式回退路径。
* 使用提供商侧模型托管，而不是维护 LM Studio、Ollama、SGLang 或 vLLM 基础设施。

当你需要厂商原生请求参数或支持合同时，请选择直接厂商提供商。当模型必须
运行在你自己的硬件或网络边界内时，请选择本地提供商。

## 故障排查

* `401`/`403`：在 Novita 的密钥管理页面验证密钥；如果已存储的配置过期，
  请重新运行 `openclaw onboard --auth-choice novita-api-key`。
* 未知模型错误：使用 `openclaw models list --provider novita` 返回的精确
  `novita/<route-id>`。
* 路由缓慢或失败：尝试另一个 Novita 模型路由，或将 Novita 设置为可容忍
  提供商特定差异的工作负载的回退提供商。

## 相关内容

* [模型提供商](/zh-CN/concepts/model-providers)
* [提供商目录](/zh-CN/providers/index)
