Anthropic's latest model release in 2026
Direct answer (verified June 19, 2026)
The newest model Anthropic has released is Claude Fable 5 (with its restricted sibling Claude Mythos 5), announced June 9, 2026. But on June 12, 2026 Anthropic disabled access to both for every customer after a US export-control directive. So the latest model you can actually use today is Claude Opus 4.8 (released May 28, 2026, API id claude-opus-4-8), which is unaffected.
Source: Anthropic's Fable 5 / Mythos 5 announcement and the Opus 4.8 release note.
"Latest model" turned out to be a moving target in June 2026. A model can be the newest release and still be something you cannot call. The list below is the dated ledger of what Anthropic actually shipped this year. Then the part the spec sheets skip: I run the Claude agent loop locally through a wrapper, and the interesting question is not which model is newest, it is how fast a tool can hand you a model it has never heard of. For fazm the answer traces to three lines of Swift, so I will show them.
The 2026 Claude release ledger
Reverse-chronological, newest first. Dates and API ids are from Anthropic's own release notes and model pages.
| Released | Model | API id | Status today |
|---|---|---|---|
| Jun 9, 2026 | Claude Fable 5 + Mythos 5 | claude-fable-5 | Suspended for all customers Jun 12 (export controls) |
| May 28, 2026 | Claude Opus 4.8 | claude-opus-4-8 | Current usable flagship |
| Feb 17, 2026 | Claude Sonnet 4.6 | claude-sonnet-4-6 | Available, mid-tier |
Opus 4.8 superseded Opus 4.7, which arrived earlier in the spring. The three rows above are the ones with public release notes I could re-verify on June 19, 2026.
Why the newest release is not the one you can run
Fable 5 is genuinely the strongest model Anthropic has made widely available, with its largest gains over Opus 4.8 on long, multi-step autonomous tasks rather than single-turn benchmarks. It shipped on June 9 across the Claude API, AWS, and Microsoft Foundry. Three days later it was gone. On June 12, 2026 the US government directed Anthropic to suspend access by foreign nationals, including its own employees, and Anthropic responded by disabling Fable 5 and Mythos 5 for everyone rather than building per-user gating overnight.
The practical consequence for anyone planning around "the latest model": pin your work to claude-opus-4-8 for now. It is the most capable id you can reliably call, it kept its pricing from Opus 4.7, and it is not subject to the suspension. If you want the dated, annotated version of every Anthropic event this year, including the IPO prep and the TCS partnership, there is a separate running log of Anthropic news in 2026.
The part no release note covers: surfacing a model the binary never heard of
Every guide on a new Claude model tells you the same things: the benchmarks, the context window, the price. None of them tells you how to actually drive the newest model from a native Mac UI the day it drops. That gap matters, because most desktop wrappers ship a hardcoded list of model names. When Anthropic releases something new, you wait for the wrapper's maintainer to add a string, cut a build, and push an update. fazm took the other path: it asks Claude Code what models exist, every session.
Here is the flow. After fazm starts a session over the Agent Client Protocol, the connected Claude Code build reports the models it supports as a models_available event. fazm parses it and pushes it into the picker. No model list lives in fazm's source.
How a freshly released model reaches the fazm picker
The handler that receives the list is set in ChatProvider.swift:1700, and it calls ShortcutSettings.shared.updateModels(models). The anchor fact lives one file over. fazm's modelFamilyMap (ShortcutSettings.swift line 193) is exactly three entries long:
Anchor fact you can verify in the open-source repo
private static let modelFamilyMap: [(substring, short, family, order)] = [
("haiku", "Scary", "Haiku", 0),
("sonnet", "Fast", "Sonnet", 1),
("opus", "Smart", "Opus", 2),
]There is no fable entry. The code was written before Fable 5 existed. Yet when Claude Code resolves claude-fable-5, the id matches none of the three substrings, so updateModels takes its unknown-family branch and surfaces the model by its API name with sort order 99. It lands at the bottom of the picker, but it lands. The model shows up the same day, with zero fazm releases shipped.
That is the difference between a wrapper that enumerates models and one that discovers them. Concretely, the day Opus 4.8 became the resolved model in a local Claude Code build, it appeared in fazm's picker labeled Smart (Opus, latest). The unknown-family fallback is the insurance policy for the next release nobody has named yet.
The catch the spec sheet does flag: entitlements
Discovery is not entitlement. Opus 4.8 advertises a 1M-context option, but whether you can use it depends on your account, not on the model being present. fazm handles this with a setModelEntitlementMissingHandler (ChatProvider.swift, just below the model-list handler). When the bridge proves your account lacks the 1m_context entitlement, fazm sets a userLacks1mEntitlement flag in UserDefaults and re-runs the picker filter, which hides the 1M variant and drops your selection back to the standard one. You still get the newest model. You just do not get a context window your plan does not cover, and you find out by the variant quietly disappearing rather than by a mid-session error.
Because fazm wraps Claude Code and you bring your own Claude Pro or Max account, usage hits your existing plan rather than a per-token bill on top. The same persistent-session, one-click-fork, no-auto-compacting UI works regardless of which model the picker resolved this morning.
Want the newest Claude model in a native Mac UI the day it ships?
Fifteen minutes on how fazm wraps Claude Code with persistent sessions, one-click forking, and a model picker that discovers releases instead of hardcoding them.
Common questions
Frequently asked questions
What is Anthropic's latest model release in 2026?
The newest model Anthropic released is Claude Fable 5, announced June 9, 2026 alongside its restricted sibling Claude Mythos 5. Both are Mythos-class, a tier above the Opus line. The catch: on June 12, 2026 Anthropic disabled access to Fable 5 and Mythos 5 for all customers after a US government export-control directive ordered it to block foreign-national access. So while Fable 5 is the latest release, the latest model you can generally use is Claude Opus 4.8, released May 28, 2026, which is unaffected.
What is the exact API model id for the current flagship?
claude-opus-4-8 for Claude Opus 4.8. Claude Sonnet 4.6 is claude-sonnet-4-6. Claude Fable 5 shipped through the Claude API on June 9 but was suspended on June 12, so its id is not something most accounts can currently call.
Why was Claude Fable 5 suspended so soon after launch?
On June 12, 2026 Anthropic received a US government export-control directive requiring it to suspend access by foreign nationals, including its own foreign-national employees, located inside or outside the United States. Rather than build per-user gating overnight, Anthropic disabled Fable 5 and Mythos 5 for everyone. The stated concern was a possible jailbreak of safeguards limiting Fable 5's use on cybersecurity tasks like vulnerability discovery. Anthropic called the issue narrow and said it had not received detailed written support for the position.
If a new model ships, do I have to update fazm to use it?
No. fazm does not bake a model list into its binary. It wraps Claude Code over the Agent Client Protocol, and after each session/new the ACP SDK reports the models the connected Claude Code build supports. fazm feeds that list straight into its picker. The day your local Claude Code resolves a new model id, it appears in fazm. No fazm release, no re-download.
Does fazm need a code change to show a model family it has never heard of?
No, and that is the testable part. fazm's modelFamilyMap (ShortcutSettings.swift line 193) contains exactly three substrings: haiku, sonnet, and opus. There is no fable entry. When the ACP SDK reports an id like claude-fable-5 that matches none of the three, updateModels falls through to its unknown-family branch and surfaces the model by its API name with sort order 99. The model still shows in the picker even though the binary predates it.
Will Opus 4.8's 1M-context default work through fazm?
Only if your account is entitled to it. Opus 4.8 advertises a 1M-context option, but entitlement is per account. fazm has a setModelEntitlementMissingHandler that, when the bridge reports a missing 1m_context entitlement, sets a UserDefaults flag and re-runs the picker filter to hide the 1M variant and drop the selection back to the standard variant. You get the model, just not a context window your plan does not cover.
What were the 2026 Claude releases in order?
Claude Sonnet 4.6 on February 17, 2026 (claude-sonnet-4-6). Claude Opus 4.8 on May 28, 2026 (claude-opus-4-8), which superseded Opus 4.7. Claude Fable 5 and Claude Mythos 5 on June 9, 2026, the first Mythos-class models, with Fable 5 made public and Mythos 5 restricted to pre-approved organizations. Fable 5 and Mythos 5 were suspended for all customers on June 12, 2026.
Keep reading
Anthropic's latest Claude model, May 2026: the Opus 4.8 deep dive
What changed from Opus 4.7, the API id, and how the 1M-context default collides with account entitlements.
Anthropic news in 2026: the dated log
Reverse-chronological Anthropic events: export controls, Fable 5, the TCS partnership, and IPO prep.
How to control Claude Code context compaction
Why auto-compacting drops decisions in long sessions, and how a wrapper keeps the full history live.
Comments (••)
Leave a comment to see what others are saying.Public and anonymous. No signup.