Building Agent Workflows That Survive Model Outages
The 18-day Claude Fable 5 outage and the GPT-5.6 restriction should be a wake-up call: no single model is reliable enough to bet your entire application on. If you're building agent systems, you need an architecture that can survive model deprecations, outages, and regulatory restrictions. Here's how to build it. First, separate your agent logic from your model calls. Instead of hardcoding model names into your agent loops, use an abstraction layer that treats models as interchangeable resources. Define a standard interface for inputs and outputs, and route requests through a model router that can switch between providers based on availability, cost, or capability requirements. Tools like LangChain, Vercel AI SDK 7 (which just shipped durable agents), or even a simple custom wrapper can handle this. Second, implement graceful degradation. When your primary model is unavailable, your agent should not crash — it should fall back to a simpler model with reduced capabilities. For example, if Fable 5 is down, your agent could fall back to Sonnet 5 for most tasks, and only queue high-complexity tasks for when the primary model returns. Define capability tiers for each model so your system knows which tasks can be handled by which fallback. Third, use durable agent primitives. Vercel's new WorkflowAgent in AI SDK 7 is designed for exactly this: it can suspend, resume, and survive function timeouts. This means if a model call fails, the agent can retry with a different model without losing state. Similarly, Anthropic's artifact system lets agents persist work across sessions, so a model outage doesn't mean lost progress. Fourth, maintain a local or open-source fallback. The 500+ open-source models now available via AI.cc and Hugging Face mean you can run your own inference infrastructure for critical paths. Llama 4, Mistral, and Qwen 3.x can handle many agent tasks with acceptable quality. Yes, they're not as capable as frontier models, but they're always available and not subject to government restrictions. The cost of running your own inference is falling fast, especially with NVIDIA's GPU backstop financing making compute more accessible. Finally, test your fallback paths regularly. The worst time to discover your fallback doesn't work is during an actual outage. Run weekly chaos engineering exercises where you simulate a primary model outage and verify that your system degrades gracefully. Document which capabilities are lost at each fallback level so your users know what to expect. The era of single-model reliability is over. Build for a world where every model is temporary.
Regulatory Risk Audit
You are a compliance officer at a frontier AI company. Analyze the GPT-5.6 limited release, the new EU AI Act Transparency Code, and Singapore's SAFR framework. Generate a risk matrix identifying three key compliance gaps for your next model launch, with specific mitigation steps for each.