Nova Premier
Amazon
amazon/nova-premier
Reasoning model, 1M context
Context Window
1.0M
1,000,000 tokens
Max Output
4K
4,096 tokens
About this model
Amazon flagship model for complex reasoning with 1M context
This model supports up to 1M tokens of context. It includes native vision understanding for analyzing images and documents. It excels at complex reasoning, mathematical problems, and multi-step tasks. It provides strong code generation and debugging capabilities.
Access it through Chuizi.AI with a single ck- API key β no separate Amazon account needed.
Highlights
1M context window
4K max output
Advanced reasoning
Native vision support
Strong code generation
Best For
Complex coding tasksAlgorithm designCode reviewTechnical architecture
2025-03-31
Capabilities
ChatVisionReasoningCode
Aliases
nova-premierPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $2.63 |
| Output / 1M | $13.13 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="amazon/nova-premier", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)