You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Premise: "routing" is two different problems, and the OSS ecosystem has already split cleanly along the blueprint's three tiers. This course is an integration and measurement course, not a build — every component exists; we teach composition and produce numbers nobody has published.
The stack (all CNCF-track OSS, composing by design):
vLLM Semantic Router (Tier 1+2): Envoy ExtProc “Mixture-of-Models” layer — BERT intent/domain classification picks the cheapest capable model, decides reasoning on/off per request (When to Reason), and carries PII detection + jailbreak filtering + semantic caching.
llm-d (Tier 3): CNCF Sandbox scheduler within each model's replica pool — prefix/KV-cache-aware balancing (kv-cache wins), predicted-latency scheduling (GA in v0.7), P/D disaggregation. It deliberately never chooses between models — which is exactly why the two projects stack: semantic-router ships official installs for Envoy AI Gateway / Gateway API Inference Extension, the same machinery llm-d builds on.
RouteLLM (method): preference-trained win-rate thresholds, ~85% cost cut at 95% quality on chat benchmarks — our evaluation playbook, not a production component.
Arch/Plano (counterpoint): routing-LLM-with-policies instead of classifiers; one comparison lab.
Why agent traffic is the original contribution — all published routing numbers are for chat:
Intra-episode heterogeneity: one 301 episode holds many cheap mechanical steps (tool formatting, JSON extraction) around a few hard ones (diagnosis, plan synthesis). Chat routes per conversation; agents pay off per step.
Amplified prefix-cache affinity: agent loops re-send growing context every step — llm-d's prefix-aware scheduling should win more on agent traffic than chat. Measurable with our tapes (KV hit rate, TTFT).
The privacy tier is the telco story: PII-classified steps pinned on-cluster (subscriber data in 202, topology in 301) — hybrid-cloud routing with wire-capture evidence.
Baseline: replay 101/201/301 tapes through a single frontier model; record cost-per-resolved-episode.
Tier 2: Envoy AI Gateway + Semantic Router on RHOAI; per-step small-vs-frontier routing; target ≥50% cost cut at ≥95% task success.
Tier 3: llm-d under the on-cluster pool; prefix-cache hit rate + TTFT vs naive scheduling on loop traffic.
Tier 1: PII steps never leave the cluster; wire-capture evidence per QA conventions.
Comparison: classifier (semantic-router) vs routing-LLM (Arch) vs static rules (LiteLLM) on identical tapes.
Non-goal: building a router. The blueprint claims routed inference is cheaper without being worse — this course proves or disproves it on agent workloads, with evidence.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Premise: "routing" is two different problems, and the OSS ecosystem has already split cleanly along the blueprint's three tiers. This course is an integration and measurement course, not a build — every component exists; we teach composition and produce numbers nobody has published.
The stack (all CNCF-track OSS, composing by design):
Why agent traffic is the original contribution — all published routing numbers are for chat:
Labs:
Non-goal: building a router. The blueprint claims routed inference is cheaper without being worse — this course proves or disproves it on agent workloads, with evidence.
All reactions