Expert routing
Extends MoE from per-token switching to per-concept specialist selection.
Hey there, meet A.R.I.A.
Inference decisions should happen where meaning forms. Route through latent space.
What is latent routing?
Most AI systems route too late. Multi-agent pipelines route at the text layer, which can be slow and brittle. MoE systems route per token, which is better, but still misses the level where concepts are already shaped.
r = Router(E(x))
The router operates on the latent vector, not raw tokens.
Three forms
Extends MoE from per-token switching to per-concept specialist selection.
Selects specialist agents by proximity to their latent competence regions.
Exits inference early when the representation lands near a confident region.
Why now
Models are becoming modular, inference cost is the bottleneck, and mechanistic interpretability is making representation geometry easier to inspect.
Opening
A compact visual explainer for inference-time routing through representation space, inspired by the article "What Is Latent Routing?".
Return to top