Back to Models

Nova 2.0 Lite (high)

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

Intelligence Score

Intelligence

35

#67 of 212 (top 32%)

Speed

173 tok/s

#27 of 141

Price

$0.85

per M tokens

#71 cheapest of 142

Context Window

1M

tokens

Latency: 12ms (#131)

Score Breakdown

Quality Score58%
Speed Score22%
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