Amazon Nova 2 Lite
How TheRouter serves this differently from the vendor
AWS serves Nova 2 Lite through Bedrock bedrock-runtime with Converse, Invoke, response streaming, guardrails, client-side tool calling, prompt caching, extended thinking, web grounding, and code interpreter. The native model card lists text, image, and video input; text output; 1M context; 64K max output; and no native Bedrock structured outputs.
TheRouter exposes Nova 2 Lite as OpenAI-compatible /v1/chat/completions under amazon/nova-2-lite. Operational routing, pricing, context, modality, and supported-parameter fields are taken from the live TheRouter catalog; this curated page documents AWS-only capabilities and calls out that unproven snippets remain capped until an operator funds verification.
API guide
Chat completion
Call Nova 2 Lite through TheRouter's OpenAI-compatible surface. TheRouter handles the Bedrock InvokeModel / Converse translation upstream β your client code stays OpenAI-shaped.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"messages": [{"role": "user", "content": "Summarise this 200-page PDF in 5 bullets."}]
}'Streaming
Stream tokens for chat UIs. With extended thinking enabled, time-to-first-token grows with the chosen budget; streaming hides the latency once generation starts.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"stream": true,
"messages": [{"role": "user", "content": "Explain DSA attention in 200 words."}]
}'Tool use
Nova 2 Lite supports function calling through the standard tools/tool_choice fields. Note: web grounding and the code interpreter are managed by Bedrock as runtime tools, separate from your declared functions.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"messages": [{"role": "user", "content": "Look up the AWS region for Tokyo."}],
"tools": [{
"type": "function",
"function": {
"name": "lookup_region",
"parameters": {"type": "object", "properties": {"city": {"type": "string"}}}
}
}]
}'Structured JSON
Use response_format to constrain output to JSON. Useful for downstream parsers; pair with a JSON schema in the system prompt for stricter shape control.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"response_format": {"type": "json_object"},
"messages": [
{"role": "system", "content": "Return JSON: {\"intent\":string,\"entities\":string[]}"},
{"role": "user", "content": "Book a flight from Tokyo to Sydney next Friday."}
]
}'Vision input
Nova 2 Lite is natively multimodal β pass images alongside text in the OpenAI-compatible content array. Per AWS, document and short video inputs are also supported.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"messages": [{
"role": "user",
"content": [
{"type": "text", "text": "Extract the invoice total and due date."},
{"type": "image_url", "image_url": {"url": "https://therouter.ai/assets/vision-sample.png"}}
]
}]
}'Extended thinking
Off by default. Enable via the reasoning field and pick a budget β low / medium / high β to trade speed for depth. AWS recommends starting off, then stepping up only on tasks that need it.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-2-lite",
"reasoning": {"effort": "medium"},
"messages": [{"role": "user", "content": "Plan a multi-step deployment migration."}]
}'Fact ledger β every claim on this page traces here
| source | URL | retrieved | |
|---|---|---|---|
| Release window | aws.amazon.com β | 2026-08-15 | verified |
| Bedrock model id | docs.aws.amazon.com β | 2026-08-15 | verified |
| Training cutoff | docs.aws.amazon.com β | 2026-08-15 | verified |
| Maximum output | docs.aws.amazon.com β | 2026-08-15 | verified |
| Prompt caching | docs.aws.amazon.com β | 2026-08-15 | verified |
| Extended thinking budget levels | aws.amazon.com β | 2026-08-15 | verified |
| Built-in tools | aws.amazon.com β | 2026-08-15 | verified |
| Customization | aws.amazon.com β | 2026-08-15 | verified |
| Bedrock tiers | aws.amazon.com β | 2026-08-15 | verified |
| License | β | β | verified |
| AWS launch benchmark summary | aws.amazon.com β | 2026-08-15 | verified |
| Long-context benchmark disclosure | assets.amazon.science β | 2026-08-15 | verified |
| Bedrock model card limits | docs.aws.amazon.com β | 2026-08-15 | verified |
| AWS introduces Nova 2 Lite β 1M context, extended thinking, web grounding built in | aws.amazon.com/blogs/aws β | 2026-08-15 | verified |
| Amazon publishes Nova 2 technical report | assets.amazon.science β | 2026-08-15 | verified |
| What is the context window of Nova 2 Lite? | aws.amazon.com β | 2026-08-15 | to verify |
| Does Nova 2 Lite support extended reasoning? | aws.amazon.com β | 2026-08-15 | to verify |
| What tools come built in? | aws.amazon.com β | 2026-08-15 | to verify |
| Can I fine-tune Nova 2 Lite? | aws.amazon.com β | 2026-08-15 | to verify |
| How does Nova 2 Lite pricing compare across Bedrock tiers? | aws.amazon.com β | 2026-08-15 | to verify |