Back to ModelsBack to Models
NVIDIA Nemotron Nano 9B V2
NVIDIA15/ 57
Intelligence Score
Intelligence
15
#157 of 212 (top 74%)
Speed
116 tok/s
#65 of 141
Price
$0.07
per M tokens
#10 cheapest of 142
Context Window
131K
tokens
Latency: 1ms (#7)
Score Breakdown
Quality Score25%
Speed Score15%
Cost Score99%
Similar Models
Step3 VL 10B
StepFun
15intelligence
Gemma 4 E2B
Google
15intelligence
Llama Nemotron Ultra
NVIDIA
15intelligence
ERNIE 4.5 300B A47B
Baidu
15intelligence
Solar Pro 2
Upstage
15intelligence
Use This Model
Claude Code
claude --model nvidia-nemotron-nano-9b-v2-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "nvidia-nemotron-nano-9b-v2-reasoning",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("nvidia-nemotron-nano-9b-v2-reasoning"),
prompt: "Hello",
});