06-reference

alphasignal model routers missing middleware

2026-07-12·reference·source: AlphaSignal·by Ben Dickson

The Missing Middleware: Why AI at Scale Requires Model Routers

⚠️ Sponsorship

Reducto (agentic document extraction platform) sponsored this issue. The sponsor block appears twice: as a native "From Reducto" lead item and as a standalone sponsor section with logo. The editorial content covers model routing — unrelated to Reducto's document parsing product — so sponsorship does not appear to distort the technical coverage.

Why this is in the vault

Ben Dickson's "Sunday Deep Dive" is the most comprehensive single-source treatment of model routing architecture I've seen in newsletter form. It covers all four paradigms (heuristic, learned, cascade, ensemble), names specific commercial and open-source tools with benchmark numbers, and closes with a "step 0" discipline that is operationally actionable: build your internal evals and prompt logs before touching routing infrastructure. This is the reference to send when the question is "why does model routing matter and where do I start?"

Mapping against Ray Data Co

RDCO's always-on Claude Code harness routes every request to the same Sonnet model, paying frontier prices for tasks that include channel parsing, simple Notion queries, file reads, and routine dispatch decisions. The cascade paradigm directly addresses this: NadirClaw's production data shows 60-70% of developer assistant prompts are simple file-reads or formatting tasks; a 10ms embedding classifier can divert those to a lightweight model, cutting API bills up to 70%. Before any routing layer is worth building, Dickson's "step 0" applies: RDCO needs internal eval datasets and prompt-log tagging to know which task categories dominate the token budget. ACRouter's Context-Action-Feedback loop also maps cleanly to the verify-dispatch SOP already in use in the brigade — the Verifier component writing objective metrics back to Memory is exactly the feedback loop the verification pattern needs to close.

Issue contents

Sunday Deep Dive: Stop routing everything to the frontier

Author: Ben Dickson (TechCrunch / VentureBeat contributor, described as "Engineer's Journalist")

Framing: Capable open-weight models (GLM-5.2, DeepSeek-v4, Kimi-K2.7) reliably handle 70-80% of routine workloads at a fraction of frontier cost. The engineering challenge is classifying which 20-30% of requests actually require a premium model — that classification layer is the router.


Router architecture taxonomy (four paradigms):


Commercial tools:


Open-source / self-hosted options:


Key constraints and "step 0":

Related