Benchgen
Models/anthropic/

Claude 3.5 Sonnet

DraftPublic

Model Details

Claude 3.5 Sonnet

Organization Context Max output Pricing License Modality Released

Quick answer: Claude 3.5 Sonnet (October 2024, claude-3-5-sonnet-20241022) is Anthropic's mid-tier model that set the standard for cost-efficient frontier coding and reasoning at its release. It scores 49.0% on SWE-bench Verified and 65.0% on GPQA Diamond, operates on a 200K-token context window, and is priced at $3/$15 per million tokens — delivering Opus-class performance at Sonnet speed.

At a Glance

Where Claude 3.5 Sonnet leads

  • Strong coding benchmark — 49.0% on SWE-bench Verified at Sonnet pricing when it was released
  • GPQA Diamond 65.0% — graduate-level scientific reasoning at mid-tier cost
  • 200K-token context with solid long-document fidelity for contracts, codebases, and research

Where it lags

  • Superseded by Claude Sonnet 4 and later Sonnet 4.6 for new builds; use 3.5 only if you need the specific older checkpoint
  • 8,192-token output limit is lower than newer models (up to 128K on Sonnet 4.6)
  • No extended thinking or adaptive effort modes — single-pass inference only

Best for: teams maintaining existing Claude 3.5 Sonnet integrations, or workflows that need a well-characterised, stable checkpoint for regression testing and fine-tuning baselines.

What Claude 3.5 Sonnet Is

Claude 3.5 Sonnet was launched by Anthropic on June 20, 2024, and updated to its current checkpoint (claude-3-5-sonnet-20241022) on October 22, 2024. At release, it was the most capable Anthropic model available, outperforming Claude 3 Opus across nearly every benchmark while running at twice the speed and a fraction of the cost. The October 2024 update added computer use capability — the ability to interact with desktop applications and browsers via screenshots — making it the first frontier model to ship that feature in general availability.

The model sits in Anthropic's "Sonnet" tier: balanced intelligence for high-volume production use. It is a dense transformer trained on text and images, closed-source, and available only via API. Knowledge cuts off at April 2024.

From a Benchgen perspective, Claude 3.5 Sonnet is a historically important checkpoint and a common baseline for agent quality comparisons. Many teams that started building agents in 2024 used it as their primary backbone, which means Benchgen trajectory data collected during that period will predominantly reflect its behavior. For new builds, Sonnet 4.6 is the current recommendation — but understanding 3.5 Sonnet's behavioral profile remains useful when interpreting legacy evaluation results or comparing across generations.

Specifications

FieldValue
OrganizationAnthropic
Model typeStandard instruction-tuned model
API identifierclaude-3-5-sonnet-20241022
AccessClosed, API only (Anthropic API, AWS Bedrock, Google Cloud Vertex AI)
Context window200,000 tokens
Max output8,192 tokens
ArchitectureDense transformer (details undisclosed)
LicenseProprietary
Release dateOctober 22, 2024 (updated); June 20, 2024 (original)
Knowledge cutoffApril 2024
ModalityMultimodal (text and vision); computer use (Oct 2024+)

Pricing

Input (per 1M tokens)Output (per 1M tokens)
Anthropic$3.00$15.00

Prompt caching reduces input costs by up to 90%; batch processing reduces both by 50%. Source: Anthropic pricing page.

Context Window

Claude 3.5 Sonnet has a 200,000-token context window — roughly 300 pages of text in a single request — with a maximum output of 8,192 tokens. That is enough to hold a large codebase, a lengthy contract stack, or a full research paper at once. The October 2024 version added computer use, letting the model read the screen and take mouse/keyboard actions inside the context of a task.

Public Benchmark Scores

BenchmarkScoreSourceDate
SWE-bench Verified49.0%Anthropic model card2024-10
GPQA Diamond65.0%Anthropic model card2024-10
HumanEval93.7%Anthropic model card2024-10
MMLU88.7%Anthropic model card2024-10

Scores are reported by Anthropic and shown for context. They are not Benchgen measurements. See the source for harness and methodology details.

Claude 3.5 Sonnet vs Alternatives

ModelContextSWE-bench VerifiedGPQA DiamondPrice (in/out per 1M)
Claude 3.5 Sonnet200K49.0%65.0%$3 / $15
Claude Sonnet 4.61M (beta)~73%+$3 / $15
GPT-4o128K~33%53.6%$2.50 / $10
Gemini 1.5 Pro2M46.2%$1.25 / $5

At the same $3/$15 price point, Sonnet 4.6 substantially outperforms 3.5 Sonnet on every current benchmark. The only reasons to stay on 3.5 Sonnet are version-pinning requirements, existing fine-tunes, or the need to compare against a fixed historical baseline. (Rival scores sourced from respective provider announcements; not Benchgen measurements.)

How Claude 3.5 Sonnet Performs on Real Agent Tasks

Claude 3.5 Sonnet's 49.0% SWE-bench Verified score was a high-water mark when it was published in mid-2024 — a strong signal that the model could handle realistic, multi-file software engineering tasks rather than just toy coding puzzles. The computer use feature added in October 2024 extended this to browser and desktop automation, and Anthropic's own internal agentic coding evaluation reported 64% task completion.

What those numbers reflect is consistent mid-tier agentic reliability: the model makes reasonable tool calls, recovers from errors with moderate reliability, and handles instruction chains of 5–15 steps well. Where it tends to break down is in very long-horizon tasks — 30+ step workflows with many state-dependent decisions — where the absence of extended thinking and the 8,192-token output cap can cause the model to truncate or repeat steps. For teams evaluating this with Benchgen, expect strong Tool-Call Accuracy and Goal Completion scores on sub-15-step tasks, with regression risk on longer workflows.

Use Claude 3.5 Sonnet via API

from anthropic import Anthropic

client = Anthropic(api_key="YOUR_API_KEY")

message = client.messages.create(
    model="claude-3-5-sonnet-20241022",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Review this Python function for bugs..."}],
)
print(message.content[0].text)

Frequently Asked Questions

What is Claude 3.5 Sonnet? Claude 3.5 Sonnet is Anthropic's mid-tier model, released in June 2024 and updated in October 2024. It was the most capable Claude model at release and became the industry standard for cost-efficient coding and reasoning tasks throughout late 2024.
What is Claude 3.5 Sonnet's context window? 200,000 tokens — roughly 300 pages of text in a single request — with a maximum output of 8,192 tokens.
How much does Claude 3.5 Sonnet cost? $3 per million input tokens and $15 per million output tokens. Prompt caching cuts input costs by up to 90%; batch processing reduces both by 50%.
Is Claude 3.5 Sonnet open source? No. It is a proprietary, closed model available only via Anthropic's API, AWS Bedrock, and Google Cloud Vertex AI. There are no downloadable weights.
What is Claude 3.5 Sonnet's knowledge cutoff? April 2024. Events, publications, and data after that date are not reflected in the model's base knowledge.
Should I use Claude 3.5 Sonnet or Claude Sonnet 4.6? For new projects, Claude Sonnet 4.6 is the current recommendation — it runs at the same price point but with a 1M-token context window, extended thinking, and substantially higher benchmark scores. Use 3.5 Sonnet only if you need a version-pinned checkpoint for stability or historical comparison.

Specs and scores sourced from Anthropic's Claude 3.5 Sonnet announcement and the model card addendum. Third-party benchmark scores attributed inline. Last updated 2026-06-19.

Benchmark Leaderboards

This model isn’t on any benchmark leaderboard yet.