Back to Models

Llama Nemotron Super 49B v1.5

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

Intelligence Score

Intelligence

15

#161 of 212 (top 76%)

Speed

50 tok/s

#119 of 141

Price

$0.18

per M tokens

#30 cheapest of 142

Context Window

128K

tokens

Latency: 1ms (#52)

Score Breakdown

Quality Score25%
Speed Score6%
Cost Score98%

Use This Model

Claude Code

claude --model llama-nemotron-super-49b-v1-5

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",
    "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"),
  prompt: "Hello",
});
Back to Models