AI Weekly #27/2026: Claude Sonnet 5 Becomes the New Standard - and Grok 4.5 Remains a Claim
TL;DR
This week in 30 seconds:
- Claude Sonnet 5: Becomes the new default model for Free & Pro starting July 1 - closes in on Opus 4.8 performance at just $2/million input tokens instead of Opus pricing.
- Fable 5: Back globally available after just 18 days offline - a new safety classifier blocks the reported bypass technique over 99% of the time.
- Grok 4.5: Musk announces Opus-level performance via an X post - no benchmark, no system card, no public access.
- Job market: Tech and finance sectors are shedding an average of 28,000 jobs a month - precisely the industries with the fastest AI adoption.
Audio Version
11:26 | Download MP3
Chapters
- 0:00 - TL;DR - 0:45 - Story of the Week - 2:52 - More Top Stories - 6:16 - Quick Hits - 7:19 - Tool of the Week - 8:13 - Fail of the Week - 10:12 - Reading List - 10:47 - Next WeekRead aloud with edge-tts (en-US-AndrewNeural)
Story of the Week
Claude Sonnet 5 Is Here - and It’s Supposed to Be Almost as Good as Opus, for a Sixth of the Price
Starting July 1, 2026, Anthropic is making Claude Sonnet 5 the new default model for all Free and Pro users [1]. Not a quiet background update, but a direct replacement for Claude 4.6 - for millions of users all at once.
Anthropic calls it the most “agentic” Sonnet model yet: it builds its own plans, uses tools, and operates at a level of autonomy previously reserved for larger models [1]. Anthropic says Sonnet 5 shows clear improvements over Sonnet 4.6 in reasoning, tool use, coding, and knowledge work - with performance approaching Opus 4.8 [1]. It also brings a native 1-million-token context window plus lower rates of unwanted behavior such as hallucination and sycophancy, backed by real-time cyber safeguards [1].
The real lever is price: through August 31, 2026, Sonnet 5 costs an introductory $2 per million input tokens and $10 per million output tokens, rising to $3/$15 afterward [1]. The model (claude-sonnet-5) is available immediately via API, Claude Code, and the Claude Platform - across Free, Pro, Max, Team, and Enterprise alike [1].
“Approaching Opus 4.8” - at significantly lower cost. [1]
— Anthropic
Why it matters: For developers and teams who stuck with Sonnet 4.6 over cost concerns, this means Opus-level agentic capability just became affordable at mass-market scale. Anyone using Claude Code or the API for coding workflows gets a more capable default model overnight, at no extra cost.
Critical voices: It remains open how strongly “close to Opus” holds up in independent benchmarks - Anthropic’s own comparison figures naturally come from the vendor itself.
Bottom Line: Sonnet 5 pushes mid-tier agentic capability up far enough that an Opus upgrade no longer makes sense for many teams.
More Top Stories
Claude Science Enters Public Beta - Anthropic Takes Aim at Biology’s Complexity
Anthropic has unveiled Claude Science, an application tailored for lab and pharma research, presented at an event in San Francisco [2]. CEO Dario Amodei sees it as a technology meant to help tackle the complexity of biological systems - a domain where researchers have so far had to rely solely on their own minds [2].
“It’s going to be a general purpose technology that helps us to make sense of that complexity, in its full complexity, better. We don’t know for sure if that’s going to work out. But I think we’re seeing signs that we’re seeing the beginnings of it.” [2]
— Dario Amodei, CEO Anthropic
Anthropic has not yet disclosed concrete metrics or pricing [2]. Still, pharma and biotech teams should take a close look: Amodei’s own caution (“we don’t know for sure if it’s going to work out”) is notably candid for a product announcement - a sign that this launches more as a research tool than a finished product.
EU Council Gives Final Green Light to Simplified AI Act
The Council of the European Union has given final approval to the “Simplification Package” for the AI Act [3]. The key change: obligations for high-risk AI systems are pushed back to December 2027 and August 2028, respectively [3]. Small and medium-sized enterprises with up to 750 employees and up to €150 million in revenue get additional relief [3]. At the same time, the EU is tightening rules elsewhere: a new ban targets non-consensual sexualized AI content and AI-generated CSAM material [3].
For European AI teams, this means more time to prepare for compliance obligations, but no all-clear on misuse scenarios - the deadline extension applies only to high-risk systems, not the new prohibited-use provisions.
Fable 5 Returns - and the Jailbreak Debate Exposes an Industry-Wide Problem
After just 18 days, Anthropic is making Claude Fable 5 globally available again starting July 1, 2026, after US export controls (imposed June 12, 2026) were lifted on June 30, 2026 [4]. The export halt was triggered by a method Amazon researchers found to bypass Fable 5’s safeguards and generate exploit code [4]. Notably, tests showed that even weaker models such as Claude Opus 4.8, GPT-5.5, and Kimi K2.7 could identify the same vulnerabilities [4].
“Many less capable models - including Claude Opus 4.8, GPT-5.5, and Kimi K2.7 - were able to identify the same vulnerabilities as Fable 5.” [4]
— Anthropic
Anthropic, together with Amazon, Microsoft, and Google, has proposed an industry-wide framework for rating jailbreak severity, based on four criteria: capability uplift, breadth, actionability, and discoverability [4]. The new safety classifier blocks the reported bypass technique over 99% of the time, and the research team was doubled before launch [4]. So what? The incident shows that when even weaker models find the same flaw, a security issue is rarely model-specific - industry coordination becomes a necessity, not a nice-to-have.
Quick Hits
Briefly noted:
- Google: Gemini 3.1 Flash-Lite Image replaces the preview models retired on June 25, with up to 1M-token input context across text/image/audio/video [6].
- Google: The open Gemma 4 12B model runs locally on just 16GB of memory; Android 17 brings floating windows and foldable layouts for Pixel [7].
- Mistral: Leanstral 1.5, an open-source proof assistant under Apache 2.0, saturates miniF2F at 100% and found 5 previously unknown bugs across 57 test repositories [8].
- Meta: Brain2Qwerty v2 translates brain activity via MEG into text without implants - average word accuracy of 61%, up to 78% for the best-performing participant [5].
- Job market: JPMorgan, Citigroup, and Goldman Sachs bankers confirm, per a Bloomberg analysis, that AI will cost jobs in the coming years [11].
Tool of the Week
llm-coding-agent - Simon Willison’s own Claude Code clone as a Python library
Simon Willison has released “llm-coding-agent,” a Python library built on his “llm” framework that implements a Claude-Code-like coding agent - complete with file reading/editing and command execution [9]. It packs five core tools: string-replacement editing, shell execution with a 120-second timeout, glob-based file listing, paginated reading, and regex file search [9]. Of particular interest to developers: an undocumented Python API via the CodingAgent class for programmatic control of custom workflows [9].
Notably, according to Willison, Claude Fable 5 itself handled large parts of the tool’s specification and test-driven development [9] - the tool that builds coding agents was built by one.
Available via uvx --prerelease=allow --with llm-coding-agent llm code [9].
Fail of the Week
“Early evals show performance close to, perhaps exceeding Opus” - with zero evidence
Elon Musk announced via X that Grok 4.5 (built on the 1.5-trillion-parameter V9 foundation model, supplemented with Cursor training data) is running internally at SpaceX and Tesla in private beta, with performance close to or exceeding Claude Opus [10].
“Grok 4.5, based on our 1.5T V9 foundation model, with Cursor data added in supplemental training, is now in private beta at SpaceX & Tesla. Early evals show performance close to, perhaps exceeding Opus.” [10]
— Elon Musk, X
Root Cause: xAI has published neither benchmarks nor a system card for Grok 4.5 - no independent evaluation, no methodology, no public access [10]. The Opus comparison remains a bare claim with no way to verify it.
What we learn: A performance claim without published benchmarks, a system card, or independent verification is marketing, not a result - withhold judgment until the numbers show up.
Number of the Week
28,000
According to a Bloomberg analysis of US labor market data, the tech and finance sectors are shedding an average of 28,000 jobs a month in 2026 - in precisely the industries with the fastest AI adoption [11]. By comparison, the economy as a whole added more than 113,000 new jobs a month on average through May 2026 - without the decline in tech and finance, the overall total would be markedly higher [11]. AI is cited as the driver behind 101,743 layoffs in 2026, or 23% of all recorded layoffs [11]. A Stanford Digital Economy Lab study paints a more nuanced picture: employment falls in occupations where AI automates tasks, but stays stable where AI merely supports employees [11].
Reading List
For the weekend:
- Anthropic: Claude Sonnet 5 Announcement - The full technical rundown straight from Anthropic, including benchmark comparisons against Opus 4.8 (10 min)
- Meta AI Blog: Brain2Qwerty - How MEG data and LLM fine-tuning together translate thoughts into text, with the research paper included (20 min)
- Simon Willison: llm-coding-agent - A hands-on look at how an experienced developer builds his own coding agent - and how much of it Claude itself handled (12 min)
Next Week
What’s coming:
- Further rollouts of Claude Sonnet 5 as the default model are likely to bring visible user reactions and the first independent benchmarks in the coming days.
- Following the Council’s decision, the EU Commission will need to navigate the trilogue vote in Parliament before the new deadlines for the “Simplification Package” take final effect.
- We’re still watching: whether xAI actually delivers benchmarks or a system card for Grok 4.5 - so far the Opus comparison remains unsubstantiated.
🤖 Behind This Newsletter
Generated in: ~35 minutes Sources scanned: 20 articles from RSS feeds and WebSearch Stories found: 20 → 11 selected Validation: 4 agents (Fact-Check, Devil’s Advocate, Quality Editor, Legal Compliance) Model: Claude Sonnet 5 + Haiku (Validation) Images: Pollinations.ai (5 generated)
Full metrics
| Phase | Metric | Value |
|---|---|---|
| Source collection | RSS feeds | multiple Tier-1/2 sources |
| Source collection | WebSearch queries | multiple |
| Selection | Stories presented | 11 |
| Selection | Stories selected | 11 |
| Draft | Words | ~1,400 |
| Draft | Sources cited | 11 |
| Validation | Fact-Check issues | TBD |
| Validation | Balance issues | TBD |
| Validation | Quality issues | TBD |
| Validation | Legal issues | TBD |
This newsletter was researched and written with AI assistance. Images generated with Pollinations.ai.
Sources
- Claude Sonnet 5 ist da
- Claude Science - AI-Workbench fuer Wissenschaftler
- EU-Rat billigt vereinfachten AI Act
- Fable 5 kehrt zurueck
- Brain2Qwerty v2
- Gemini 3.1 Flash-Lite Image
- Google Juni-KI-Rueckblick
- Leanstral 1.5
- llm-coding-agent (Simon Willison)
- Grok 4.5 Private Beta ohne Benchmarks
- Tech- und Finanzsektor verlieren 28.000 Stellen/Monat