Mosaic concepts pages now own the adapted content; source/license metadata under docs/reference/concepts. Adds ACT-1 agent-context planning capture, pinned concept test package + preparation utility, foundation observation notes (durability, evidence, federation, onboarding, workflow), and the #1495 consolidation assessment. TOOLS.md updated for the host-dev launcher.
96 lines
2.9 KiB
Markdown
96 lines
2.9 KiB
Markdown
---
|
|
summary: "Use NovitaAI's OpenAI-compatible API with OpenClaw"
|
|
read_when:
|
|
- You want to run OpenClaw with NovitaAI models
|
|
- You need the Novita provider id, key, or endpoint
|
|
title: "NovitaAI"
|
|
---
|
|
|
|
NovitaAI is a hosted AI infrastructure provider with an OpenAI-compatible API.
|
|
OpenClaw provides NovitaAI through the official external
|
|
`@openclaw/novita-provider` plugin. Model refs use the
|
|
`novita/deepseek/deepseek-v4-pro` form.
|
|
|
|
## Setup
|
|
|
|
Install the plugin and restart the Gateway:
|
|
|
|
```bash
|
|
openclaw plugins install @openclaw/novita-provider
|
|
openclaw gateway restart
|
|
```
|
|
|
|
Create an API key at [novita.ai/settings/key-management](https://novita.ai/settings/key-management), then run:
|
|
|
|
```bash
|
|
openclaw onboard --auth-choice novita-api-key
|
|
```
|
|
|
|
Or set:
|
|
|
|
```bash
|
|
export NOVITA_API_KEY="<your-novita-api-key>" # pragma: allowlist secret
|
|
```
|
|
|
|
## Defaults
|
|
|
|
| Setting | Value |
|
|
| ------------- | --------------------------------- |
|
|
| Plugin | `@openclaw/novita-provider` |
|
|
| Provider id | `novita` |
|
|
| Aliases | `novita-ai`, `novitaai` |
|
|
| Base URL | `https://api.novita.ai/openai/v1` |
|
|
| Env var | `NOVITA_API_KEY` |
|
|
| Default model | `novita/deepseek/deepseek-v4-pro` |
|
|
|
|
## Model catalog
|
|
|
|
- `novita/moonshotai/kimi-k3`
|
|
- `novita/moonshotai/kimi-k2.7-code`
|
|
- `novita/minimax/minimax-m3`
|
|
- `novita/zai-org/glm-5.2`
|
|
- `novita/deepseek/deepseek-v4-pro`
|
|
- `novita/deepseek/deepseek-v4-flash`
|
|
- `novita/qwen/qwen3.7-max`
|
|
|
|
`novita/minimax/minimax-m2.7` remains selectable as a deprecated compatibility
|
|
entry but is hidden from model pickers.
|
|
|
|
This is a starting point, not a live catalog. Your account, region, or
|
|
Novita's current offering may add, remove, or restrict routes. Check before
|
|
setting a long-lived default:
|
|
|
|
```bash
|
|
openclaw models list --provider novita
|
|
```
|
|
|
|
## When to choose Novita
|
|
|
|
- Hosted open-weight model access with an OpenAI-compatible API.
|
|
- DeepSeek, Kimi, MiniMax, GLM, or Qwen-family routes through a single provider
|
|
account.
|
|
- Another hosted fallback path beside DeepInfra, GMI, OpenRouter, or direct
|
|
vendor APIs.
|
|
- Provider-side model hosting instead of maintaining LM Studio, Ollama,
|
|
SGLang, or vLLM infrastructure.
|
|
|
|
Choose a direct vendor provider when you need vendor-native request
|
|
parameters or support contracts. Choose a local provider when the model must
|
|
run on your own hardware or network boundary.
|
|
|
|
## Troubleshooting
|
|
|
|
- `401`/`403`: verify the key in Novita's key management page and re-run
|
|
`openclaw onboard --auth-choice novita-api-key` if the stored profile is
|
|
stale.
|
|
- Unknown model errors: use the exact `novita/<route-id>` returned by
|
|
`openclaw models list --provider novita`.
|
|
- Slow or failed routes: try another Novita model route, or set Novita as a
|
|
fallback provider for workloads that can tolerate provider-specific
|
|
variance.
|
|
|
|
## Related
|
|
|
|
- [Model providers](/concepts/model-providers)
|
|
- [Provider directory](/providers/index)
|