The MoE Pricing Earthquake: Four Releases in One Week Redraw Your Inference Economics
The Convergence
Four Mixture-of-Experts releases landed simultaneously, each pushing extreme sparsity as the dominant inference pattern. Combined with MiniMax M2.7 undercutting Opus 4.6 by 50x on input pricing while GPT-5.4 mini/nano hiked prices 4x, the LLM market has bifurcated into premium and commodity tiers in a single week.
| Model | Total Params | Active Params | Sparsity | Input $/M | License |
|---|---|---|---|---|---|
| Mistral Small 4 | 119B | ~3.7B (4/128) | 96.9% | Self-host | Apache 2.0 |
| Nemotron-Cascade 2 | 30B | 3B | 90% | TBD | TBD |
| Nemotron 3 Super | 120B | 12B | 90% | TBD | TBD |
| Flash-MoE (Qwen3.5) | 397B | 17B | 95.7% | Local | Open |
| MiniMax M2.7 | Undisclosed | Undisclosed | N/A | $0.30 | API |
The Cost-Per-Task Reframing
The critical insight across multiple sources: cost-per-successfully-completed-task should replace raw token spend as your primary KPI. Consider a single always-on agent consuming 700M tokens/week. At Opus 4.6 input rates: $3,500/week. At MiniMax M2.7: $210/week. Annual delta: $171K per agent. But a model charging double per token that resolves tasks in fewer turns may actually be cheaper — the quality gap isn't uniform across tasks.
MiniMax M2.7 benchmarks reveal the non-uniformity clearly: it excels at bug detection and floating-point calculation, matches Opus on vulnerability scanning, but is weaker on multi-step bug fix thoroughness. This means task-aware routing captures most of the savings without the quality hit.
A 14x price gap at 90% quality means the default for any production pipeline should be 'route to the cheapest model that clears your quality bar per task' — and if you don't have per-task quality thresholds, that's your first problem.
Flash-MoE: A Different Paradigm
Flash-MoE deserves separate attention. It runs Qwen3.5-397B (209 GB on disk) on a MacBook Pro with 48GB RAM at 4.4 tok/s by streaming expert weights from SSD through a custom Metal pipeline — no Python, no PyTorch. Modern NVMe SSDs on Apple Silicon deliver 5-7 GB/s sequential read, enough to stream active experts between tokens. This is not a serving solution (no batch inference, no concurrency) — it's a local prototyping and private data experimentation tool.
What's Missing
MiniMax M2.7's "90% quality" claim has no disclosed evaluation suite, sample sizes, or composite methodology. The Terminal-Bench 2 comparison (57% vs Opus 58%) is the hardest data point. Critically, M2.7's output pricing at $120/M is asymmetrically expensive — generation-heavy tasks will not see 50x savings. Your actual cost depends entirely on your input/output ratio.
What to do
Benchmark MiniMax M2.7 against your current frontier model on your top 5 task types, measuring cost-per-completed-task (including retries and escalations), not token spend
Evaluate Mistral Small 4 (119B, Apache 2.0) for self-hosted inference on your most common workloads
Build a cost-per-task evaluation harness that captures total inference cost including retries, human escalation, and error correction — replace token-count dashboards
Test Flash-MoE on Apple Silicon for local prototyping with large MoE models on private data