<p>A few days ago we shipped same-day support for Claude Fable 5 — Anthropic's new Mythos-class flagship, a million tokens of context, the whole event. We wrote a warm post about it. People tried it.</p><p>This morning it returns a 404.</p><p>The model still appears in Anthropic's catalog, but actual requests now come back with a polite redirect: <em>"Claude Fable 5 is not available. Please use Opus 4.8."</em> Access has been pulled. No drama, no announcement in your terminal — just a model that worked yesterday and doesn't today.</p><p>It's a useful reminder of something easy to forget: <strong>you don't own the models you build on.</strong> You rent them, and the landlord can change the locks. Which is exactly why the boring, unglamorous feature — being able to switch models in one command — turns out to be the important one. So let's talk about a model worth switching <em>to</em>.</p><h2>Mistral Medium 3.5</h2><p>While the flagship drama played out, Mistral quietly has a model sitting in Elyra's registry that deserves more attention than it gets. Here's what it actually is:</p><ul><li><p><strong>256k token context</strong> — not a million, but more than enough for real codebases and long documents.</p></li><li><p><strong>Reasoning built in</strong> — it thinks through hard problems, and Elyra's thinking levels map onto it.</p></li><li><p><strong>Vision</strong> — text <em>and</em> images, so screenshots and diagrams work.</p></li><li><p><strong>Genuinely affordable</strong> — about <strong>$1.50 per million input tokens and $7.50 per million output</strong>. For a capable reasoning-and-vision model, that's a comfortable middle.</p></li></ul><p>It's the kind of model that doesn't top a leaderboard but quietly handles most of what you throw at it without emptying your wallet — a workhorse, not a show pony.</p><h2>Using it takes two lines</h2><pre><code class="language-bash">export MISTRAL_API_KEY=...
elyra
</code></pre><p>Then inside the session:</p><pre><code class="language-text">/model
</code></pre><p>Search for <code>Mistral Medium 3.5</code>, select it, keep going. There are two IDs for the same model — <code>mistral-medium-3.5</code> (a stable alias) and <code>mistral-medium-2604</code> (date-stamped) — use the alias and you won't have to think about it.</p><p>Prefer headless? It's a one-liner:</p><pre><code class="language-bash">elyra -p "Audit src/billing for edge cases" \
  --provider mistral --model mistral-medium-3.5
</code></pre><h2>The part that matters today: switch without flinching</h2><p>Here's where the morning's 404 becomes a teaching moment instead of an outage. If Fable 5 had been your only plan, today would hurt. In Elyra, it's a shrug:</p><pre><code class="language-text">/model
</code></pre><p>…pick Mistral Medium 3.5, and your session keeps going — same conversation, same files, same context. Or make it permanent for a repo by pinning it as your balanced tier in <code>.elyra/settings.json</code>:</p><pre><code class="language-json">{
  "smartRouting": true,
  "smartRoutingModels": {
    "balanced": "mistral/mistral-medium-3.5"
  }
}
</code></pre><p>Now smart routing reaches for Mistral on the everyday turns, and you've insulated that project from any single provider's decisions. Want to confirm a model is actually reachable before you rely on it? That's what the new probe is for:</p><pre><code class="language-bash">elyra doctor models --provider mistral --model medium
</code></pre><p>It makes a real call and tells you the truth — which, as today proves, is not always what the catalog claims.</p><h2>The quiet lesson</h2><p>We're not here to dunk on Anthropic — restricting a powerful new model is a defensible call, and Opus 4.8 is excellent. The point is bigger than any one model: in a world where capabilities appear and disappear on someone else's schedule, the durable advantage isn't picking the "best" model. It's being able to <strong>change your mind in five seconds</strong> when the best model changes on you.</p><p>Mistral Medium 3.5 is a great answer to "what now?" — affordable, capable, multimodal, and available <em>today</em>. But the real answer is the muscle Elyra gives you: thirty-plus providers, one <code>/model</code>, and never being held hostage by a single 404.</p><p>Models come and go. Your agent shouldn't have to.</p><p>Happy building.</p>