Back to Models

Llama Nemotron Super 49B v1.5

![NVIDIA](https://artificialanalysis.ai/img/logos/nvidia_small.svg)NVIDIA
19/ 57

Intelligence Score

Intelligence

19

#132 of 212 (top 62%)

Speed

51 tok/s

#117 of 141

Price

$0.18

per M tokens

#29 cheapest of 142

Context Window

128K

tokens

Latency: 1ms (#51)

Score Breakdown

Quality Score32%
Speed Score7%
Cost Score98%

Use This Model

Claude Code

claude --model llama-nemotron-super-49b-v1-5-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-nemotron-super-49b-v1-5-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-nemotron-super-49b-v1-5-reasoning"),
  prompt: "Hello",
});
Back to Models