
Amazon's Titan and Nova models represent AWS's proprietary family of foundation models, available through Amazon Bedrock - AWS's unified AI model platform. These models are designed to handle a variety of tasks including text generation, image generation, and embeddings, offering enterprise-grade reliability and performance through APIpie's routing system.
While this guide focuses on Amazon's own Titan and Nova models, Amazon Bedrock serves as a comprehensive AI model platform hosting both Amazon's proprietary models and those from other leading providers. Through APIpie's unified API, you can seamlessly access:
APIpie simplifies Bedrock integration by providing:
For a complete list of available models and providers, see our Models Route.
Titan Models:
Nova Models:
When choosing between Titan and Nova models, APIpie provides comprehensive monitoring tools to help make informed decisions:
Performance Monitoring:
Pricing & Cost Analysis:
Health Metrics:
This monitoring system helps users:
When choosing between Titan and Nova models, consider these key differences:
Titan Models:
Nova Models:
While Amazon Bedrock hosts various provider models, this section focuses on Amazon's own Titan and Nova series. For a complete list of all available models through Bedrock and other providers, see our Models Route.
| Model Name | Max Tokens | Response Tokens | Providers | Type |
|---|---|---|---|---|
| titan-tg1-large | 32,000 | 32,000 | Bedrock | LLM |
| titan-text-lite-v1 | 4,000 | 4,000 | Bedrock | LLM |
| titan-text-express-v1 | 8,000 | 8,000 | Bedrock | LLM |
| titan-text-premier-v1 | 32,000 | 32,000 | Bedrock | LLM |
| olympus-premier-v1 | - | - | Bedrock | LLM |
| titan-embed-g1-text-02 | 8,192 | 8,192 | Bedrock | Embedding |
| titan-embed-text-v1 | 8,192 | 8,192 | Bedrock | Embedding |
| titan-embed-text-v2 | - | - | Bedrock | Embedding |
| titan-image-generator-v1 | - | - | Bedrock | Image |
| titan-image-generator-v2 | - | - | Bedrock | Image |
| titan-embed-image-v1 | - | - | Bedrock | Image |
| titan-image-generator-v1_premium | - | - | EdenAI | Image |
| titan-image-generator-v1_standard | - | - | EdenAI | Image |
| nova-pro-v1 | 300,000 | 5,120 | Bedrock, OpenRouter | LLM |
| nova-lite-v1 | 300,000 | 5,120 | Bedrock, OpenRouter | LLM |
| nova-micro-v1 | 128,000 | 5,120 | Bedrock, OpenRouter | LLM |
| nova-canvas-v1 | - | - | Bedrock | LLM |
| nova-reel-v1 | - | - | Bedrock | LLM |
Below is an example of how to use the Chat Completions API to interact with a Titan model.
curl -L -X POST 'https://apipie.ai/v1/chat/completions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
--data-raw '{
"provider": "bedrock",
"model": "titan-text-premier-v1",
"max_tokens": 150,
"messages": [
{
"role": "user",
"content": "Can you explain how photosynthesis works?"
}
]
}'
The expected response structure for a Titan model might look like this:
{
"id": "chatcmpl-12345example12345",
"object": "chat.completion",
"created": 1729535643,
"provider": "bedrock",
"model": "titan-text-premier-v1",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Photosynthesis is the process by which plants convert sunlight into chemical energy. Here's how it works:\n\n1. **Light Absorption**: Plants capture sunlight using chlorophyll in their leaves\n\n2. **Water and CO2**: They take in water through roots and carbon dioxide through leaf pores\n\n3. **Chemical Reaction**: Using sunlight's energy, they convert H2O and CO2 into glucose and oxygen:\n 6CO2 + 6H2O + light → C6H12O6 + 6O2\n\nThis process produces food for the plant and releases oxygen as a byproduct."
},
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 15,
"completion_tokens": 125,
"total_tokens": 140,
"prompt_characters": 45,
"response_characters": 520,
"cost": 0.00225,
"latency_ms": 3100
},
"system_fingerprint": "fp_123abc456def"
}
Titan Applications:
Nova Applications:
Integration Options:
Amazon's models are designed with responsible AI principles. Users should implement appropriate safeguards and consider potential biases. For guidance, see AWS's Responsible AI Guidelines.
Titan and Nova models are available through AWS Bedrock. Usage is subject to AWS Service Terms. For detailed information, consult the Amazon Bedrock documentation.
AI Comparison Guide: Overview of LLM Providers
Compare features and capabilities of top AI models from OpenAI, Anthropic, Google, Meta, and more. Find the perfect model for your needs.
Claude AI by APIpie: Overview & Key Features
Discover Anthropic's Claude AI models, including Claude 3 Opus and Sonnet. Compare features and explore integration options for enhanced performance.