Back to Models

NVIDIA Nemotron Nano 12B v2 VL

NVIDIA
10/ 57

Intelligence Score

Intelligence

10

#177 of 210 (top 84%)

Speed

135 tok/s

#42 of 148

Price

$0.30

per M tokens

#45 cheapest of 144

Context Window

128K

tokens

Latency: 1ms (#45)

Score Breakdown

Quality Score18%
Speed Score22%
Cost Score97%

Use This Model

Claude Code

claude --model nvidia-nemotron-nano-12b-v2-vl

API (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-12b-v2-vl",
    "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-12b-v2-vl"),
  prompt: "Hello",
});
Back to Models