Nova Pro 1.0

Amazon chattool_usevision Long

API ID: amazon/nova-pro-v1

Input Price
$0.80
/1M tokens
Output Price
$3.20
/1M tokens

About Nova Pro 1.0

Nova Pro is Amazon's flagship multimodal model, designed for enterprise applications requiring strong performance across text, image, and video understanding. As part of Amazon's Bedrock AI platform, Nova Pro integrates seamlessly with AWS services for scalable enterprise deployment. The model excels at complex reasoning, content generation, and multimodal analysis tasks. Nova Pro features a substantial context window and supports function calling for building sophisticated AI workflows. It demonstrates strong performance on enterprise use cases including document processing, customer support, and content moderation. The model benefits from Amazon's infrastructure for reliable, scalable deployment. For enterprises already invested in AWS seeking capable multimodal AI with native cloud integration, Nova Pro offers a compelling option. It's particularly valuable for organizations prioritizing AWS ecosystem compatibility and enterprise-grade reliability.

๐Ÿ’ฐ
Price Ranking
#1040 lowest price among 1240 Chat models

Model Specifications

Context Length
300k
Max Output
5k
Release Date
2024-12-05
Capabilities
chat tool_use vision
Input Modalities
textimage
Output Modalities
text

Best For

  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$1.32
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$40.80
/month
1000 tickets/day, ~800 tokens each

Amazon Model Lineup

Compare all models from Amazon to find the best fit

Model Input Output Context Capabilities
Nova Pro 1.0 Current $0.80 $3.20 300k chat tool_use vision
Nova Micro 1.0 $0.04 $0.14 128k chat tool_use
Nova Lite 1.0 $0.06 $0.24 300k chat tool_use vision
Nova 2 Lite $0.30 $2.50 1.0M chat reasoning tool_use
Nova Premier 1.0 $2.50 $12.50 1.0M chat tool_use vision

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Relace Relace Search
Input: $1.00
Output: $3.00
Context: 256k
Nous Research Hermes 4 405B
Input: $1.00
Output: $3.00
Context: 131k
Xiaomi MiMo-V2.5-Pro
Input: $1.00
Output: $3.00
Context: 1.1M
Alibaba Qwen Qwen VL Max
Input: $0.80
Output: $3.20
Context: 131k

๐Ÿš€ Quick Start

Get started with Nova Pro 1.0 API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="amazon/nova-pro-v1",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)