Loading model details...
Loading model details...
by Anthropic
Claude 3.5 Sonnet is our most intelligent model, excelling at complex reasoning, coding, and nuanced content creation. It delivers superior performance with the speed and cost of our mid-tier models.
Claude 3.5 Sonnet represents a significant leap forward in AI capabilities. It sets new industry benchmarks for graduate-level reasoning (GPQA), undergraduate-level knowledge (MMLU), and coding proficiency (HumanEval). The model is designed to handle complex, multi-step workflows with impressive accuracy while maintaining the conversational tone and natural language understanding that Claude is known for.
Experience the model's capabilities with our interactive demo
Test the model with your own prompts and see the results in real-time
200,000 tokens
8,192 tokens
Up to April 2024
100+ languages
87 tokens/s
32 tokens/s
| Tier | Input Price | Output Price |
|---|---|---|
| Input | $3/million tokens | $15/million tokens |
| Cached | $0.3/million tokens | $15/million tokens |
import anthropic
client = anthropic.Anthropic(api_key="your-api-key")
message = client.messages.create(
model="claude-3-5-sonnet-20241022",
max_tokens=1024,
messages=[
{"role": "user", "content": "Hello, Claude!"}
]
)
print(message.content)Based on community reviews