

























@@ -3,12 +3,15 @@ summary: "Use NVIDIA's OpenAI-compatible API in OpenClaw"
33read_when:
44 - You want to use open models in OpenClaw for free
55 - You need NVIDIA_API_KEY setup
6+ - You want to use Nemotron 3 Ultra through NVIDIA
67title: "NVIDIA"
78---
89910NVIDIA provides an OpenAI-compatible API at `https://integrate.api.nvidia.com/v1` for
1011open models for free. Authenticate with an API key from
11-[build.nvidia.com](https://build.nvidia.com/settings/api-keys).
12+[build.nvidia.com](https://build.nvidia.com/settings/api-keys). OpenClaw
13+defaults the NVIDIA provider to Nemotron 3 Ultra, NVIDIA's 550B total / 55B
14+active reasoning model for long-context agentic work.
12151316## Getting started
1417@@ -24,7 +27,7 @@ open models for free. Authenticate with an API key from
2427</Step>
2528<Step title="Set an NVIDIA model">
2629```bash
27-openclaw models set nvidia/nvidia/nemotron-3-super-120b-a12b
30+openclaw models set nvidia/nvidia/nemotron-3-ultra-550b-a55b
2831```
2932</Step>
3033</Steps>
@@ -56,7 +59,7 @@ openclaw onboard --auth-choice nvidia-api-key --nvidia-api-key "nvapi-..."
5659 },
5760 agents: {
5861 defaults: {
59- model: { primary: "nvidia/nvidia/nemotron-3-super-120b-a12b" },
62+ model: { primary: "nvidia/nvidia/nemotron-3-ultra-550b-a55b" },
6063 },
6164 },
6265}
@@ -69,22 +72,39 @@ try NVIDIA's public featured-model catalog from
6972`https://assets.ngc.nvidia.com/products/api-catalog/featured-models.json` and
7073caches the ranked result for 24 hours. New featured models from build.nvidia.com
7174therefore appear in setup and model-selection surfaces without waiting for an
72-OpenClaw release.
75+OpenClaw release. When the live feed is available, the first returned model is
76+the default option shown during NVIDIA setup.
73777478The fetch uses a fixed HTTPS host policy for `assets.ngc.nvidia.com`. If no
7579NVIDIA API key is configured, or if that public catalog is unavailable or
76-malformed, OpenClaw falls back to the bundled catalog below.
80+malformed, OpenClaw falls back to the bundled catalog and bundled default below.
81+82+## Nemotron 3 Ultra
83+84+Nemotron 3 Ultra is the default NVIDIA model in OpenClaw. NVIDIA's build page for
85+[`nvidia/nemotron-3-ultra-550b-a55b`](https://build.nvidia.com/nvidia/nemotron-3-ultra-550b-a55b)
86+lists it as an available free endpoint with a 1M-token context specification.
87+The bundled catalog records a 16,384-token max output to match NVIDIA's current
88+OpenAI-compatible sample request for the hosted endpoint.
89+90+Use Ultra for the highest-capability NVIDIA default. Keep Super selected when
91+you want the smaller Nemotron 3 option, or choose one of the third-party models
92+hosted in NVIDIA's catalog when their context, latency, or behavior fits better.
93+The bundled Ultra row sends `chat_template_kwargs.enable_thinking: false` and
94+`force_nonempty_content: true` by default so normal chat output stays in the
95+visible answer instead of exposing reasoning text.
77967897## Bundled fallback catalog
799880-| Model ref | Name | Context | Max output | Notes |
81-| ------------------------------------------ | ---------------------------- | ------- | ---------- | --------------------------------- |
82-| `nvidia/nvidia/nemotron-3-super-120b-a12b` | NVIDIA Nemotron 3 Super 120B | 262,144 | 8,192 | Featured fallback |
83-| `nvidia/moonshotai/kimi-k2.5` | Kimi K2.5 | 262,144 | 8,192 | Featured fallback |
84-| `nvidia/minimaxai/minimax-m2.7` | Minimax M2.7 | 196,608 | 8,192 | Featured fallback |
85-| `nvidia/z-ai/glm-5.1` | GLM 5.1 | 202,752 | 8,192 | Featured fallback |
86-| `nvidia/minimaxai/minimax-m2.5` | MiniMax M2.5 | 196,608 | 8,192 | Deprecated, upgrade compatibility |
87-| `nvidia/z-ai/glm5` | GLM-5 | 202,752 | 8,192 | Deprecated, upgrade compatibility |
99+| Model ref | Name | Context | Max output | Notes |
100+| ------------------------------------------ | ---------------------------- | --------- | ---------- | --------------------------------- |
101+| `nvidia/nvidia/nemotron-3-ultra-550b-a55b` | NVIDIA Nemotron 3 Ultra 550B | 1,000,000 | 16,384 | Default |
102+| `nvidia/nvidia/nemotron-3-super-120b-a12b` | NVIDIA Nemotron 3 Super 120B | 262,144 | 8,192 | Featured fallback |
103+| `nvidia/moonshotai/kimi-k2.5` | Kimi K2.5 | 262,144 | 8,192 | Featured fallback |
104+| `nvidia/minimaxai/minimax-m2.7` | Minimax M2.7 | 196,608 | 8,192 | Featured fallback |
105+| `nvidia/z-ai/glm-5.1` | GLM 5.1 | 202,752 | 8,192 | Featured fallback |
106+| `nvidia/minimaxai/minimax-m2.5` | MiniMax M2.5 | 196,608 | 8,192 | Deprecated, upgrade compatibility |
107+| `nvidia/z-ai/glm5` | GLM-5 | 202,752 | 8,192 | Deprecated, upgrade compatibility |
8810889109## Advanced configuration
90110@@ -97,16 +117,46 @@ malformed, OpenClaw falls back to the bundled catalog below.
97117<Accordion title="Catalog and pricing">
98118OpenClaw prefers NVIDIA's public featured-model catalog when NVIDIA auth is
99119configured and caches it for 24 hours. The bundled fallback catalog is static
100-and keeps deprecated shipped refs for upgrade compatibility. Costs default to
101-`0` in source since NVIDIA currently offers free API access for the listed
102-models.
120+and keeps deprecated shipped refs for upgrade compatibility. Costs default
121+to `0` in source since NVIDIA currently offers free API access for the
122+listed models.
103123</Accordion>
104124105125<Accordion title="OpenAI-compatible endpoint">
106126NVIDIA uses the standard `/v1` completions endpoint. Any OpenAI-compatible
107127tooling should work out of the box with the NVIDIA base URL.
108128</Accordion>
109129130+<Accordion title="Nemotron 3 Ultra reasoning params">
131+NVIDIA's Ultra sample request uses `chat_template_kwargs.enable_thinking`
132+and `reasoning_budget` for reasoning output. OpenClaw's bundled Ultra row
133+disables template thinking by default for normal chat use. If you need to
134+opt into NVIDIA reasoning output or force other NVIDIA-specific request
135+fields, set per-model params and keep provider-specific overrides scoped to
136+the NVIDIA model:
137+138+```json5
139+{
140+ agents: {
141+ defaults: {
142+ models: {
143+ "nvidia/nvidia/nemotron-3-ultra-550b-a55b": {
144+ params: {
145+ chat_template_kwargs: { enable_thinking: true },
146+ extra_body: { reasoning_budget: 16384 },
147+ },
148+ },
149+ },
150+ },
151+ },
152+}
153+```
154+155+`params.extra_body` is the final OpenAI-compatible request-body override, so
156+use it only for fields NVIDIA documents for the selected endpoint.
157+158+</Accordion>
159+110160<Accordion title="Slow custom provider responses">
111161Some NVIDIA-hosted custom models can take longer than the default model idle
112162watchdog before they emit a first response chunk. For custom NVIDIA provider
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。