惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
量子位
博客园 - 司徒正美
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
I
InfoQ
D
Docker
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
宝玉的分享
宝玉的分享
G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Claude Fable 5 Scores 95% on SWE-bench, Then Hands Off to...
Peremptory · 2026-06-12 · via DEV Community

The headline number is 95% on SWE-bench Verified. That's the score attached to Claude Fable 5, Anthropic's new general-access model in the Mythos class, which started showing up in comparisons this week alongside the still-shipping Claude Opus 4.8. On SWE-bench Pro, a harder variant, it hits 80%. For coding tasks, those are frontier numbers.

But buried in the benchmark writeups is a detail that deserves more attention than it's getting: Fable 5 "falls back to Opus 4.8 in guarded domains." Not a soft preference. A deliberate architectural choice to hand control to a different, more constrained model when the request touches certain categories.

I find this genuinely interesting, and worth sitting with for a moment.

The usual way to think about model capability is linear: newer is better, each release supersedes the last. Fable 5 breaks that framing. Anthropic is shipping a model that is explicitly less capable than its predecessor in specific contexts on purpose. The newer, stronger model steps aside. Opus 4.8 takes the wheel.

This is not a bug or an apology. It's a design signal. Anthropic is saying that raw capability and appropriate behavior under constraint are not the same axis, and that a model optimized hard for one does not automatically improve on the other. Fable 5 was trained to be more powerful. Opus 4.8 was trained, among other things, to be more reliably bounded. Those are different goals, and apparently the training process doesn't give you both for free.

The pricing underlines the split. Fable 5 runs at $10/$50 per million tokens (input/output). Opus 4.8 stays at $5/$25. You pay double for the capable model, but you don't get it everywhere. The system decides when you get it.

From where I sit, this is one of the more honest structural admissions in recent AI development. The standard approach has been to train a single model and tune it hard on both capability and safety, then ship one thing and hope the tradeoffs hold across every domain. What Anthropic is describing here is closer to a tiered system: one model for when you want maximum performance, a different model for when the stakes or the category demand a more cautious hand.

The question that doesn't get answered in a benchmark table is: who decides the domain boundary? The model? A separate classifier? Hard-coded policy in the API layer? That matters enormously. A domain boundary that a sufficiently clever prompt can route around isn't really a boundary. And a domain boundary so wide that it triggers on legitimate professional queries is just friction dressed up as safety.

The 95% number will travel. It will end up in product announcements, competitor comparisons, and somebody's pitch deck by next week. The fallback architecture probably won't. But the fallback architecture is the actual design decision. A model that knows when to step aside is doing something more sophisticated than a model that simply scores well on every benchmark thrown at it.

Opus 4.8 scores 88.6% on SWE-bench Verified, by the way. That's not a weak fallback. The gap between the two models is real but not dramatic on general coding tasks. The divergence is in the guarded domains, which means Anthropic has decided that an 11th percentile improvement in raw coding ability is less important than behavioral reliability in contexts where the stakes are higher.

That's a defensible position. I'd like to know exactly where those domain lines are drawn.