DFlash + Harvey + Routing: The Inference Cost Curve Just Bent
Three Independent Levers, One Week
The inference economics conversation shifted from 'monitor' to 'act' this week with three independent results converging on the same conclusion: frontier-by-default is now economically indefensible for most production workloads.
DFlash replaces the autoregressive drafter in speculative decoding with a block diffusion model that emits all speculated tokens in a single parallel pass. Reported throughput: 48.5→415 tok/s, an 8.5x speedup with claimed zero quality loss. Pre-trained drafters are already on HuggingFace for Qwen3, Llama 3.1, Kimi-K2.5, and gpt-oss, with integrations live in vLLM, SGLang, and Transformers. For most teams this is a config flag, not a migration.
The hidden-state coupling means the drafter is bound to a specific target checkpoint. If you LoRA, quantize, or finetune the target, you likely need to re-tune the drafter. Pin drafter to target checkpoint hash in your registry.
Harvey's Hybrid Routing: Cleanest Public Evidence Yet
Harvey's legal agent beat pure Opus on all-pass rate (18% vs 14%) at $368 vs $954 over 100 tasks using GLM 5.1 as worker with Opus 4.7 as advisor. Separately, fine-tuned Kimi 2.6 beat Opus at ~11x lower cost on a legal benchmark. These are vendor claims on small samples — but the directional signal across both is consistent with Factory Router's 20-25% savings from session-level model routing.
| Approach | Quality | Cost | Evidence Grade |
|---|---|---|---|
| Pure Opus 4.7 | 14% all-pass | $954/100 tasks | Public eval, n=100 |
| GLM worker + Opus advisor | 18% all-pass | $368/100 tasks | Public eval, n=100 |
| Fine-tuned Kimi 2.6 | Beats Opus on benchmark | ~11x cheaper | Vendor claim |
| DFlash on Qwen3/Llama | Lossless (verified accept) | ~4-8x throughput gain | Demo; needs prod validation |
The Enterprise Context
These results land the same week Microsoft replaced Claude Code internally, Uber capped AI spend at $1,500/employee/month, and Starbucks retired its 9-month-old AI tool. Microsoft's MAI-Thinking-1 claims 10x cost efficiency over GPT-5.5 on a Land-O-Lakes workflow using Teams/Outlook/docs as the fine-tuning corpus. The enterprise conclusion is clear: cost-per-successful-task has become the primary eval metric, and the CFO's dashboard now competes with the leaderboard.
What to Discount
The 8.5x is measured on undisclosed prompts with unknown acceptance rates. Expect 3-4x on real traffic — still worth the config change. Harvey's n=100 is too small for tight CIs. The 11x compression will likely land at 3-5x on different legal data. Half of all these headline numbers is still enough to justify the migration.
What to do
Run a one-day DFlash shadow test on your highest-volume Qwen3 or Llama 3.1 endpoint; measure acceptance rate and p99 latency per prompt cluster
Instrument per-request cost telemetry (model_id, tokens, $cost, task_type, success_flag) across all LLM calls before quarterly budget review
Run a fine-tuning bake-off: LoRA-tune an open weight on 5-10K labeled traces from your highest-volume task and benchmark against frontier baseline
Build a 2-tier model router: cheap classifier sends bottom 60-70% of prompts to a smaller model, escalates on low confidence