TL;DR: Benchmarked prompting and serving changes can improve issue recall while keeping cost low, according to Braintrust, which describes how Topics uses a small, task-calibrated model on every production trace to summarize, cluster, and classify agent behaviour continuously. For teams running AI or automated workflows, the lesson is that observability quality depends on measured trace coverage, not model size alone, according to Braintrust.
NHIMG editorial — based on content published by Braintrust: How we chose the model behind Topics with Baseten
By the numbers:
- The benchmark built from 650 real Topics traces measured 81.1% label correctness for the off-the-shelf Gemma 4B model.
- Braintrust reports that production summary calls complete in about 10 seconds, with tail latency up to 60 seconds during traffic spikes.
- The production setup reached 82.2% label correctness and 41.5% Issues recall.
Questions worth separating out
Q: How should security teams monitor AI agents without relying on sampled logs?
A: Use full-coverage trace collection, then summarise and score those traces against a benchmark built from real production behaviour.
Q: Why do AI observability pipelines need task-specific benchmarks?
A: Because generic accuracy scores do not tell you whether the model is catching the failures that matter in your environment.
Q: What breaks when observability models are too large to run on every trace?
A: Coverage breaks first.
Practitioner guidance
- Define a trace benchmark from real production data Create a labeled holdout set from representative traces, including rare failures and normal behaviour, so summary quality can be scored against actual operating conditions.
- Measure observability on control-relevant metrics Track label correctness, factuality, issue recall, and false positives separately, because a single aggregate score hides whether the system is missing the cases that matter most.
- Use full-coverage telemetry for agent workflows Avoid sampling where the long tail contains the highest-risk behaviours, especially for AI agents, service accounts, and delegated workflows that can fail quietly.
What's in the full article
Braintrust's full blog post covers the implementation detail this analysis intentionally leaves for the source:
- The trace summarisation and clustering pipeline that turns raw production traces into active observability signals.
- The benchmark construction approach using 650 real traces, including the scoring dimensions used to compare model behaviour.
- The prompt and serving changes that improved Issues recall without a frontier-model cost profile.
- The operational trade-offs behind latency, throughput, and continuous background processing at production scale.
👉 Read Braintrust's analysis of how Topics uses small models for active observability →
Production trace observability for agents: can small models keep up?
Explore further
Observability for AI systems is becoming an identity-adjacent control plane. When traces capture tool use, delegation, and access decisions, the monitoring layer starts to govern behaviour that traditional IAM cannot see directly. That makes the observability pipeline part of the governance stack, not just an engineering convenience. For practitioners, the question is whether the trace layer can prove what an agent did before or after it touched sensitive systems.
A question worth separating out:
Q: How do organisations know whether trace summarisation is trustworthy enough for governance?
A: They test it against a holdout set from real traces and track whether the summary supports accurate issue detection without inflating false positives. Trustworthy observability is not about whether the model sounds plausible, but whether it consistently preserves the facts needed for review and response.
👉 Read our full editorial: Task-calibrated observability for production traces at scale