12 days into the global suspension. The June 22 free-access deadline expired with Fable 5 still offline. Anthropic announced Fable 5 will return to a credit-based access model AFTER restoration — no free reinclusion in subscription plans. Restoration timeline unknown. Polymarket gives 57% odds before July 1, 75% before July 17.
WHY IT MATTERS
This is now the longest-running public AI model recall in history. The free-access window ending without restoration locks in a structural change — Fable 5, when restored, will cost extra on top of subscriptions. Anthropic Managing Director of International Chris Ciauri publicly said 'we are very confident that in the coming days, the models will become available again' — the most optimistic statement from any Anthropic exec since the ban.
HOW TO USE IT
Fable 5 remains unavailable. The API string claude-fable-5 still returns errors. Use claude-opus-4-8 as default fallback. For routine production traffic switch to claude-sonnet-4-6 (1.7x cheaper). Sakana Fugu Ultra (launched June 22) is the first true frontier alternative — works through OpenAI-compatible API. Build production systems with multi-provider fallback now, not as edge case.
CLAUDE / TYPESCRIPT
// BEFORE June 12 — broken now// model: "claude-fable-5"// CURRENT FALLBACK (June 23, 2026)const response = await anthropic.messages.create({ model: "claude-opus-4-8", // safe, available max_tokens: 8192, messages: [{ role: "user", content: prompt }]});// Or try Sakana Fugu Ultra as frontier alternative:// base_url: "https://<your-fugu-endpoint>/v1"// model: "fugu-ultra-20260615"
Anthropic updated its privacy policy effective July 8, 2026 to collect government-issued ID and biometric data via Persona (Peter Thiel-backed identity verification). Required for some Claude services. Likely the technical mechanism for restoring Fable 5 to US-citizens-only without fully lifting the export control directive.
WHY IT MATTERS
First major US AI provider to require government ID verification at the user level. Critics warn of surveillance risk and data concentration. Supporters call it industry-standard for export-controlled services. For Claude users: expect identity verification prompts before accessing high-capability models starting July 8. For builders: this likely shapes how all future export-controlled AI services will gate access.
HOW TO USE IT
If you're on Claude Pro/Max/Team, expect a verification flow in-app between now and July 8. Documents accepted: passport, driver's license, national ID. Biometric step: webcam selfie. Data handled by Persona, retained per Anthropic's privacy policy. No action required if you don't need the gated services.
Tokyo-based Sakana AI launched Sakana Fugu and Fugu Ultra on June 22, 2026. Multi-agent orchestration system presenting as a single foundation model via OpenAI-compatible API. Fugu Ultra claims parity with Anthropic's Fable 5 and Mythos Preview on engineering, scientific, and reasoning benchmarks — while neither of those models is in Fugu's agent pool (export-controlled, inaccessible).
WHY IT MATTERS
First production frontier-level alternative explicitly positioned as 'no export control risk.' Released 10 days after Fable 5 suspension — timing intentional. Architecture novelty: tiny coordinator LLM (~7B) trained to delegate to a pool of frontier models including Gemini 3.1 Pro, GPT-5.5, Opus 4.8. Built on Sakana's ICLR 2026 papers (TRINITY + Conductor). Independent reviewers (Ethan Mollick) report 'sharp gap between benchmark claims and real use' — verify on your workloads.
HOW TO USE IT
Sign up at console.sakana.ai. OpenAI-compatible API — point your existing OpenAI client at Fugu's base URL with Sakana API key. Pricing: $20/mo Standard, $100/mo Pro (10x), $200/mo Max (20x). Pay-as-you-go available at API rates. Free second month for subscribers signing up before July 31, 2026. NOT available in EU/EEA pending GDPR review.
OTHER / PYTHON
from openai import OpenAIclient = OpenAI( base_url="https://<your-fugu-endpoint>/v1", api_key="YOUR_SAKANA_API_KEY",)resp = client.chat.completions.create( model="fugu-ultra-20260615", # or "fugu" for cheaper messages=[{ "role": "user", "content": "Reproduce the method in this paper and report the gap." }],)print(resp.choices[0].message.content)
Swiss AI Initiative released Apertus — fully open-weights 8B and 70B foundation models with open weights, open training data, and full training recipes. Built by EPFL, ETH Zurich, and CSCS supercomputing. Most transparent large language model attempt to date.
WHY IT MATTERS
Direct response to AI sovereignty concerns in Europe and elsewhere. Released same week as Fable 5 suspension and Sakana Fugu launch — together they form a clear pattern: 2026 is the year frontier AI access becomes a geopolitical chess piece. For builders: Apertus 70B is a real self-hostable option for data-sensitive workloads where US frontier models are off-limits.
HOW TO USE IT
Download weights from huggingface.co/swiss-ai (search 'Apertus'). Self-host on capable hardware. Full training data and recipes published — full reproducibility is possible. For inference, an H100 or equivalent is enough for the 70B model.
Four focused micro-SaaS products targeting remote workers and nomads: an AI-powered nomad visa checker, a cost-of-living comparison tool with AI summaries, a coworking space finder with natural language search, and a freelance rate calculator with market benchmarking.
KEY LESSONS
— Build in public from day one — your first 200 users come from Twitter followers watching you build
— One tool, one problem, one price. No pricing tiers, no enterprise plans, no sales calls
— Claude API is so cheap that AI features are now table stakes, not premium features
Integrated Claude-powered AI writing assistance into ShipFast, his Next.js boilerplate for indie hackers. The AI feature generates landing page copy, email sequences, and changelog entries in the developer's brand voice. Added as an optional module, not a forced upsell.
KEY LESSONS
— Selling to developers means technical credibility first, then marketing
— One-time pricing outperforms subscriptions for bootstrapped tools — less churn anxiety, faster word-of-mouth
— The Claude API cost is so low it's basically a rounding error — don't overthink AI pricing