{% extends "dashboard/base.html" %} {% from "partials/_macros.html" import pill, empty_state, relative_time, info_toggle %} {% from "partials/_charts.html" import bar_histogram %} {% block page %}
Which tier each recent request was routed to, by task type.
Every chat request through the brains gateway picks a tier (e.g. fast, balanced, thorough) based on the inferred task type and the routing policy. This page shows the distribution: which task types you're seeing and which tiers are doing the work.
Use this to spot routing drift — e.g. trivial tasks landing on the thorough tier (slow + expensive) or hard tasks landing on the fast tier (cheap but low-quality).
{% endcall %}Volume across the {{ routes|length }} most recent requests.
What kind of work brains is being asked to route.
Latest {{ routes|length }} routing events.
| Time | Task type | Tier |
|---|---|---|
| {{ relative_time(r.created_at) }} | {{ r.task_type }} | {{ r.model_tier }} |