Back to Models

Amazon Nova 2 Lite

amazonamazon/nova-2-lite

How TheRouter serves this differently from the vendor

As the vendor operates it

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.

On TheRouter

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
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
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
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
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
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
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
sourceURLretrieved
Release windowaws.amazon.com β†—2026-08-15verified
Bedrock model iddocs.aws.amazon.com β†—2026-08-15verified
Training cutoffdocs.aws.amazon.com β†—2026-08-15verified
Maximum outputdocs.aws.amazon.com β†—2026-08-15verified
Prompt cachingdocs.aws.amazon.com β†—2026-08-15verified
Extended thinking budget levelsaws.amazon.com β†—2026-08-15verified
Built-in toolsaws.amazon.com β†—2026-08-15verified
Customizationaws.amazon.com β†—2026-08-15verified
Bedrock tiersaws.amazon.com β†—2026-08-15verified
Licenseβ€”β€”verified
AWS launch benchmark summaryaws.amazon.com β†—2026-08-15verified
Long-context benchmark disclosureassets.amazon.science β†—2026-08-15verified
Bedrock model card limitsdocs.aws.amazon.com β†—2026-08-15verified
AWS introduces Nova 2 Lite β€” 1M context, extended thinking, web grounding built inaws.amazon.com/blogs/aws β†—2026-08-15verified
Amazon publishes Nova 2 technical reportassets.amazon.science β†—2026-08-15verified
What is the context window of Nova 2 Lite?aws.amazon.com β†—2026-08-15to verify
Does Nova 2 Lite support extended reasoning?aws.amazon.com β†—2026-08-15to verify
What tools come built in?aws.amazon.com β†—2026-08-15to verify
Can I fine-tune Nova 2 Lite?aws.amazon.com β†—2026-08-15to verify
How does Nova 2 Lite pricing compare across Bedrock tiers?aws.amazon.com β†—2026-08-15to verify
Help & contact