Watch your message flow through 12 stages
Every Pro request runs the same guarded path โ redacted, routed, answered, scored. Follow the packet as it moves, see what runs in parallel, and how each answer quietly makes the next one better.
Names, emails, cards โ redacted before anything else touches the text
Prompt-injection & unsafe content gate โ blocks here or proceeds
Seen a near-identical ask? Return instantly, skip the model entirely
Prunes the prompt ~2โ3ร โ fewer tokens, lower cost, faster
Pulls your relevant past context so the answer knows you
Classifies intent โ picks the cheapest capable model (local vs cloud)
The actual generation โ the one expensive step on the hot path
Scrubs any personal data out of the reply โ then it's yours
Scores quality โ the reward signal that trains the whole pipeline
Saves this turn so future answers keep your context
Caches the answer so the next similar ask is instant
Immutable, PII-free record โ model, cost, quality, versions
Parallel where it can be, deferred where it should be
Not every stage waits its turn. The hot path is kept short โ the write-back tail is pushed off it entirely.
A reward model at Stage 9
Response validation isn't just a pass/fail. It emits a quality score โ the reward signal that tunes routing, caching and compression, blending reinforcement learning with supervised human calibration.
Stage 9 scores each finished run (task-completion, grounding, safety, persona-fit, conciseness). That composite reward is fed back as a bandit signal to the Router (which model to pick), the Cache (spot quality drops on a hit) and Compress (how hard to prune).
A calibrated set of 200 human-rated transcripts anchors the scorer. Lowest-confidence runs + every hard-fail are routed to a review UI; corrections flow back into the gold set and a weekly LoRA refresh distils the judge into a fast on-box scorer.
Any tier violation, PII leak past scrub, or hallucinated action zeroes the reward and pages a human โ it never quietly averages into a 'good enough' score.
Runs async on PII-scrubbed transcripts only ยท every score is auditable (model + rubric version + input hash)
Private by construction, smarter every day
Local is free forever. Pro adds the full guarded pipeline.