Back to Models

Nova 2.0 Lite (high)

![Amazon](https://artificialanalysis.ai/img/logos/aws_small.svg)Amazon
35/ 57

Intelligence Score

Intelligence

35

#61 of 203 (top 30%)

Speed

172 tok/s

#20 of 131

Price

$0.85

per M tokens

#69 cheapest of 136

Context Window

1M

tokens

Latency: 18ms (#120)

Score Breakdown

Quality Score58%
Speed Score25%
Cost Score92%

Use This Model

Claude Code

claude --model nova-2-0-lite-reasoning

API (cURL)

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