Provider profile: AWS Bedrock — Amazon Bedrock hosts the Nova and Titan model families with enterprise-grade reliability, data residency controls, and deep AWS ecosystem integration for teams already on AWS infrastructure.
AWS Bedrock
US (us-east-2)6 modelsNova & Titan — enterprise AI with AWS compliance guarantees
Amazon Bedrock hosts the Nova and Titan model families with enterprise-grade reliability, data residency controls, and deep AWS ecosystem integration for teams already on AWS infrastructure.
- ✓Amazon Nova 2 and Titan series with enterprise compliance guarantees
- ✓Data residency in AWS us-east-2 for regulatory requirements
- ✓Multimodal Nova models with 1M token context and dynamic reasoning
- ✓Deep AWS ecosystem integration for teams already on AWS
Quickstart
from openai import OpenAI
client = OpenAI(
base_url="https://api.therouter.ai/v1",
api_key="YOUR_THEROUTER_KEY",
)
response = client.chat.completions.create(
model="amazon/nova-2-lite",
messages=[{"role": "user", "content": "Summarize the AWS Well-Architected Framework pillars"}],
max_tokens=512,
)
print(response.choices[0].message.content)Models
Frequently Asked Questions
Which Amazon Bedrock models are available on TheRouter?
TheRouter provides Amazon Nova 2 (Lite, Pro), Nova 1 (Lite, Pro, Micro), and Amazon Titan Text Lite. All via the standard amazon/model-name format.
Does TheRouter use AWS Bedrock or direct Amazon APIs?
TheRouter uses AWS Bedrock in us-east-2 for all Amazon model requests. The provider service calls the Bedrock Converse API with proper AWS credential management.
Can I use Amazon Bedrock Claude models through TheRouter?
TheRouter routes Claude model requests to the Anthropic API directly (not Bedrock Claude), as it provides better performance, full feature parity, and direct provider SLA guarantees.
What is the Nova 2 Lite model good for?
Amazon Nova 2 Lite is a multimodal reasoning model with dynamic reasoning depth and a 1M token context window. It adjusts reasoning depth based on problem complexity, making it efficient for long-context analysis tasks.