Back to Models

Llama 3.1 Nemotron Nano 4B v1.1

NVIDIA
14/ 57

Intelligence Score

Intelligence

14

#149 of 210 (top 71%)

Speed

N/A

Not measured

Price

Free

per M tokens

Context Window

128K

tokens

Latency: N/A

Score Breakdown

Quality Score25%
Speed Score0%
Cost Score100%

Use This Model

Claude Code

claude --model llama-3-1-nemotron-nano-4b-reasoning

API (cURL)

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -d '{
    "model": "llama-3-1-nemotron-nano-4b-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("llama-3-1-nemotron-nano-4b-reasoning"),
  prompt: "Hello",
});
Back to Models