Claude Opus 4.1
Anthropic
anthropic/claude-opus-4.1
Reasoning model, 200K context
Context Window
200K
200,000 tokens
Max Output
32K
32,000 tokens
About this model
Claude Opus 4.1 via Bedrock, premium reasoning model
This model supports up to 200K 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 Anthropic account needed.
Highlights
200K context window
32K max output
Advanced reasoning
Native vision support
Strong code generation
Best For
Complex coding tasksAlgorithm designCode reviewTechnical architecture
2025-08-05
Capabilities
ChatVisionReasoningCodepdftoolscache
Aliases
claude-opus-4.1Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $15.75 |
| Output / 1M | $78.75 |
| Cache Read | $1.58 |
| Cache Write | $19.69 |
Final prices shown
Quick Start
main.py
import anthropic client = anthropic.Anthropic( base_url="https://api.chuizi.ai/anthropic", api_key="ck-your-key-here", ) message = client.messages.create( model="claude-opus-4-1-20250805", max_tokens=1024, messages=[{"role": "user", "content": "Hello!"}] ) print(message.content[0].text)