inference-providers

Nemotron 3 Nano 30B A3B

by nvidia · family nemotron

Facts

Release date2025-12-15
Retired date
Knowledge cutoff
Context (max)262,144
Max output
Modalitiestext → text
Aliasesnemotron-3-nano-30b-a3b
Open weightsyes (nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16)
DescriptionFully open 30B/3.5B-active hybrid Mamba-2/MoE with released training data and recipes; 262K context (1M-capable config), up to 228K output. chat_template_kwargs.enable_thinking toggles thinking, default on (off mode uses greedy decoding). $0.05/$0.20 per Mtok.

Unknown values are shown as —.

Offerings

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouternvidia/nemotron-3-nano-30b-a3bnanochat-completionsopenai-chatga0.05 / 0.20effort · default on · returns reasoning_content · round-trips reasoning_content

Reasoning controls

OpenRouter· nvidia/nemotron-3-nano-30b-a3b· chat-completions effort

reasoning.effort nonelowmedium●highxhighmax

effort · default on · returns reasoning_content · round-trips reasoning_content

Example requests

OpenRouter · openai-chat · nvidia/nemotron-3-nano-30b-a3b

curl 'https://openrouter.ai/api/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "nvidia/nemotron-3-nano-30b-a3b",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning": {
    "effort": "medium"
  }
}'
Python (requests)
import requests

resp = requests.post(
    "https://openrouter.ai/api/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "nvidia/nemotron-3-nano-30b-a3b",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning": {
        "effort": "medium"
      }
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "nvidia/nemotron-3-nano-30b-a3b",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning": {
      "effort": "medium"
    }
  }),
})
console.log(await resp.json())
  • ⚠ Responses include reasoning_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).