Claude Haiku 3.5
Anthropic
anthropic/claude-haiku-3.5
200K context, vision
Context Window
200K
200,000 tokens
Max Output
8K
8,192 tokens
About this model
[Legacy] Previous Haiku generation, compact and efficient
This model supports up to 200K tokens of context. It includes native vision understanding for analyzing images and documents. 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
8K max output
Native vision support
Strong code generation
Best For
Code generationRefactoringDebuggingDocumentation
2024-10-22
Capabilities
ChatVisionCodepdftoolscache
Aliases
claude-haiku-3.5claude-3-5-haikuPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.84 |
| Output / 1M | $4.20 |
| Cache Read | $0.08 |
| Cache Write | $1.05 |
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-3-5-haiku-20241022", max_tokens=1024, messages=[{"role": "user", "content": "Hello!"}] ) print(message.content[0].text)