Back to ModelsBack to Models
Nova 2.0 Lite
Amazon18/ 57
Intelligence Score
Intelligence
18
#138 of 212 (top 65%)
Speed
180 tok/s
#23 of 141
Price
$0.85
per M tokens
#77 cheapest of 142
Context Window
1M
tokens
Latency: 1ms (#53)
Score Breakdown
Quality Score30%
Speed Score23%
Cost Score92%
Similar Models
Llama 3.3 Nemotron Super 49B
NVIDIA
18intelligence
Llama 4 Maverick
Meta
18intelligence
Sarvam 105B (high)
Sarvam
18intelligence
Magistral Small 1.2
Mistral
18intelligence
Devstral Small 2
Mistral
19intelligence
Use This Model
Claude Code
claude --model nova-2-0-liteAPI (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",
"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"),
prompt: "Hello",
});