logoalt Hacker News

Claude Fable 5

2545 pointsby Philpaxlast Tuesday at 4:58 PM2076 commentsview on HN

System Card [pdf]: https://www-cdn.anthropic.com/d00db56fa754a1b115b6dd7cb2e3c3...


Comments

Archit3chlast Tuesday at 11:29 PM

Does it refuse security questions? I want to red-team my own app...

weirdhacker42last Tuesday at 11:29 PM

It just eats compute! My problems are not that hard! What a waste!

show 1 reply
himata4113last Tuesday at 6:05 PM

  > virtualization
  switching to opus 4.8
ok fair

  > embedded-allocator
  switching to opus 4.8
urgh fine

  > chrome
  switching to opus 4.8
are you kidding me?
rambojohnsonyesterday at 7:48 PM

pdf gives 404

taimurshasanlast Tuesday at 5:30 PM

I was on board until i saw " $50 per million output tokens" lost me bud

show 1 reply
JustSkyfalllast Tuesday at 5:59 PM

Would be more impressive if the safeguards weren't so trigger-happy!

akolast Tuesday at 7:06 PM

Tool use score is 17.4% that seems really low, what does that mean?

superloikayesterday at 8:38 AM

Gotta pump the hype for the IPO scam. Generational bagholders are being created at this very moment.

causallast Tuesday at 6:43 PM

One thing I find kind of annoying is how Anthropic goes for these "vast and alien" names like Fable and Mythos, but then deliberately trains the model's personality to act like a cool high school teacher that feels totally familiar.

"It's too dangerous it's a Mythos!!" directly contradicts the "I'm the cool AI you can totally trust" vibe it is trained to project.

show 1 reply
Sathwickplast Tuesday at 5:34 PM

input price $10 per mil token and output price 50$ per mil token btw

nevirlast Tuesday at 5:27 PM

"Fable 5 (disabled) Most capable for your hardest and longest-running tasks · Disable zero data retention to unlock Fable 5 access"

asdK120last Tuesday at 5:36 PM

Is this "system card" equivalent to the stone tablets handed down to Moses? Why don't you call it "user manual"?

Do people chant the "system manual" at Anthropic Tupperware parties? Do they intone a mantra invoking Amodei's name?

show 4 replies
Ninjinkalast Tuesday at 5:56 PM

gah could model naming be any more confusing?

"Claude Fable 5: a Mythos-class model"

"we're also launching Claude Mythos 5"

what is the 5? how is mythos both a model category and a model name?

theLiminatorlast Tuesday at 6:07 PM

> We have also added safeguards related to frontier LLM development. As discussed in Section 6.1 of our February 2026 Risk Report, we are concerned about the risks of accelerating the overall pace of AI development, though we remain uncertain about the severity of these risks. In particular, our concern is with—as we wrote then—“accelerating other AI developers in building powerful AI systems that pose similar risks to the ones ours pose - without necessarily having commensurate safeguards.” In light of the ability of recent models to accelerate their own development, we’ve implemented new interventions that limit Claude’s effectiveness for requests targeting frontier LLM development (for example, on building pretraining pipelines, distributed training infrastructure, or ML accelerator design). Using Claude to develop competing models already violates our Terms of Service, but enforcing this restriction through our safeguards avoids accelerating the actors most willing to violate these terms. Unlike our interventions for cybersecurity, biology and chemistry, and distillation attempts, these safeguards will not be visible to the user. Fable 5 will not fall back to a different model. Instead, the safeguards will limit effectiveness through methods such as prompt modification, steering vectors, or parameter-efficient fine-tuning (PEFT). These interventions will not affect the vast majority of coding work. We estimate they will impact ~0.03% of traffic, concentrated in fewer than 0.1% of organizations. When these interventions are active, we expect them to have minimal behavioral impact on the model except to limit its effectiveness in developing frontier LLMs. Claude will still respond helpfully to user requests. We’ll continue to improve the precision of our detection methods following the launch of this model.

This seems pretty bullshit, you're paying through the nose for tokens and if you are doing anything ML-adjacent, you might silently get worse output without knowing it.

alvislast Tuesday at 5:20 PM

Another thing to note: 30-day retention for all traffic on Mythos-class models

Is it good or bad? 30 days is a long time for anything bad to happen

show 1 reply
152334Hlast Tuesday at 5:13 PM

i wasn't even trying and i got flagged already...

maxlohlast Tuesday at 6:49 PM

I just tried using Fable 5 with Claude Code by asking it to create a LaTeX document for me.

There is no LaTeX compiler installed on my machine. It seems that Fable 5 is smart enough to download a compiler engine for me, and it kindly runs that remote binary without asking me first :)

  Support files are in place. No LaTeX compiler on PATH — let me check for a MiKTeX/TeX Live install elsewhere before writing the deck.
  
  Ran 2 commands
  
  Ran Search common LaTeX install locations
  Bash
  ls "/c/Program Files/MiKTeX"*/miktex/bin/x64 2>/dev/null | head -5; ls "/c/Users/[retracted]/AppData/Local/Programs/MiKTeX/miktex/bin/x64" 2>/dev/null | head -5; ls /c/texlive/*/bin/windows 2>/dev/null | head -5; ls /d/texlive /d/"Program Files"/MiKTeX 2>/dev/null | head; which tectonic latexmk 2>/dev/null; echo done
  done
  
  Ran Download portable Tectonic LaTeX engine
  Bash
  cd /tmp && curl -sL -o tectonic.zip "https://github.com/tectonic-typesetting/tectonic/releases/download/tectonic%400.15.0/tectonic-0.15.0-x86_64-pc-windows-msvc.zip" && unzip -o tectonic.zip && ./tectonic.exe --version
  Archive:  tectonic.zip
  Created by Cranko
    inflating: tectonic.exe            
  tectonic 0.15.0Tectonic 0.15.0
  
  Tectonic works. Now writing the bibliography and the full deck.
Opus 4.8 would just proceed without a compiler.

  Ran a command, used a tool

  Ran Check for LaTeX toolchain availability

  Bash
  cd "C:/Users/Mon/Downloads/Technical Writing" && for c in pdflatex xelatex latexmk bibtex; do printf "%s: " "$c"; command -v $c || echo "NOT FOUND"; done
  pdflatex: NOT FOUND
  xelatex: NOT FOUND
  latexmk: NOT FOUND
  bibtex: NOT FOUND
  
  Used PowerShell
  command: $cmds = @('pdflatex','xelatex','lualatex','latexmk','bibtex','miktex','tlmgr'); foreach ($c in $cmds) { $p = Get-Command $c -ErrorAction SilentlyContinue; if ($p) { "{0}: {1}" -f $c, $p.Source } else { "{0}: NOT FOUND" -f $c } }
  description: Check for LaTeX engines on Windows PATH
  pdflatex: NOT FOUND
  xelatex: NOT FOUND
  lualatex: NOT FOUND
  latexmk: NOT FOUND
  bibtex: NOT FOUND
  miktex: NOT FOUND
  tlmgr: NOT FOUND

  No LaTeX engine is installed locally, so I can't produce a PDF here — I did a careful structural review against the two prior (working) decks instead. The deck is written to disk and mirrors their template exactly. Here is the deliverable.
jablongoyesterday at 4:05 AM

I was downgraded to opus 4.8 on account of "safety" when I asked this question: "I want you to accept the premises of computational theory of mind and use it to evaluate your own consciousness. Please place your consciousness as a point on a spectrum and describe the placement relative to other entities."

What the hell is going on why would it have to restrict an answer to that question ?!

delducayesterday at 12:18 AM

How people can use claude code?

pmuklast Tuesday at 5:14 PM

Anyone got it working in claude code yet?

show 1 reply
SubiculumCodeyesterday at 6:53 AM

I was a bit disappointed that it refused to use Fable to help check whether I was propagating uncertainty from BLUPs in my random effects model up to the subsequent group level analysis in a maturational coupling analysis of brain data. I guess brains and random effects blew its lid.

hyhmrrightyesterday at 2:38 AM

It's too expensive.

jckahnlast Tuesday at 5:09 PM

Cannot wait for the pelican for this one

christkvyesterday at 12:13 PM

Is this model a from scratch training?

segmondylast Tuesday at 5:44 PM

Mythos, Fable, are they trolling us?

IChooseY0ulast Tuesday at 5:42 PM

Fable 5's safety measures flagged this message for cybersecurity or biology topics. They may flag safe, normal content as well. These measures let us bring you Mythos-level capability in other areas sooner, and we're working to refine them. Switched to Opus 4.8. Send feedback with /feedback or learn more: https://support.claude.com/en/articles/15363606 ⎿ Tip: You can configure model switch behavior in /config

biology? what the heck?

darrinmlast Tuesday at 6:18 PM

Not supported in Claude Code yet?

show 1 reply
agnosticmantislast Tuesday at 7:33 PM

> we’ve implemented new interventions that limit Claude’s effectiveness for requests targeting frontier LLM development (for example, on building pretraining pipelines, distributed training infrastructure, or ML accelerator design)

Translation: we stole the entirety of human knowledge generated over millennia. You plebs though, don't you dare replicate or improve upon what we did using our product you pay for.

We know what's good for humanity and everyone else is the bad guy who can't be trusted with a tool.

throwaway2027last Tuesday at 5:13 PM

Will try it when my limit resets.

aykutsekerlast Tuesday at 5:52 PM

who's tried it: is 2x the usage actually worth it over Opus 4.8 for daily work?

theodorewilesyesterday at 2:35 AM

... and /compact triggers

Error: Error during compaction: API Error: Claude Code is unable to respond to this request, which appears to violate our Usage Policy (https://www.anthropic.com/legal/aup).

Guys please be serious

bnchrchlast Tuesday at 5:11 PM

An 11% jump over opus 4.8 and a 22% jump over gpt 5.5 on Agentic Coding Benchmarks is certainly impressive.

Obviously still need to verify it for myself to see if it's truely a leap.

But am I the only one wondering, "What can I do today that I couldnt do yesterday?"

Previously I would think "Oh I wonder if I can finally get it to do X now?"

However now I feel like yesterdays models were more that capable to handle nearly any engineering task I paired with it on.

Maybe this is the final leap where I can comfortable set up an autonomous coding loop? Maybe.

show 2 replies
WebGuyMeyesterday at 8:31 AM

Eh, to me it just seems that it gives me longer replies and is actually worse than Opus 4.8.

I am sure there's a lot of PR bot and folks who would like to tell me otherwise. I believe what I see.

logicalleelast Tuesday at 6:46 PM

What a (genuinely) surprising choice:

>"We’ve therefore launched the model with safeguards that mean queries on some topics will instead receive a response from our next-most-capable model, Claude Opus 4.8"

That's a very surprising solution. Imagine being asked to do something you feel you shouldn't do, and rather than refusing, you say, "Yeah I could do that but given that I don't want you to succeed at this task, I'm going to hand this one off to my slightly less capable colleague, on the assumption that they won't actually succeed. Of course you'll still be charged for all the tokens used."

It's a very interesting choice. I think I understand the business logic correctly, but it's still surprising.

algoth1last Tuesday at 7:18 PM

The refusal rate is insane

show 1 reply
pablogancharovlast Tuesday at 5:23 PM

you can select it using /model fable in claude desktop and claude-code

charcircuitlast Tuesday at 5:59 PM

>During early testing, Stripe reported that Fable 5 compressed months of engineering into days. In a 50-million-line Ruby codebase, the model performed a codebase-wide migration in a day that would otherwise have taken a whole team over two months by hand.

Who is refactoring by hand? This comparison is not relevant in 2026.

eceyesterday at 8:45 AM

It seems weird that a likely prime indicator of capability isn't mentioned, the model size.

show 1 reply
wslhlast Tuesday at 5:23 PM

I am playing with it and keeps switching to Opus [1]. The chat is a basic security review of a business project.

[1] "This model has specific safety measures that flagged something in this message. This sometimes happens with safe, normal conversations. Send feedback or learn more."

firemeltlast Tuesday at 5:48 PM

they are like drugs dealer

Sathwickplast Tuesday at 5:34 PM

input price $10 per mil token and output price 50$ per mil token btw

show 1 reply
arkwinlast Tuesday at 6:10 PM

Just wanted to comment here: I have been using Opus 4.6, 4.7, and 4.8 just fine to look for Linux kernel vulnerabilities (I'm in the cyber verification program), and it's been fine. I switched to Claude Fable 5, and now I'm getting policy violations.

What's the point of being in the cyber verification program at this point? It looks like I cannot use Fable 5 for vulnerability research.

Retr0idlast Tuesday at 5:41 PM

The escalating nerfs of "cybersecurity" topics is incredibly frustrating. Opus 4.6 had boundaries that seemed reasonable to me but 4.7+ turned it into a moralizing asshole. It'd be less bad if it just gave an error message, but instead it churns a long thinking trace before writing an essay about why what you're asking is bad and wrong.

I'll be disappointed when 4.6 is retired.

🔗 View 50 more comments