Documentation
¶
Overview ¶
Package report turns the telemetry-only ledger into per-task quality stats (no model calls). It is the observational complement to package eval's labeled gold-set metrics — it reports raw production signals, not AURC/AUDC.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SortedTasks ¶
SortedTasks returns stable task keys.
Types ¶
type TaskStat ¶
type TaskStat struct {
Task string `json:"task"`
N int `json:"n"`
Deferred int `json:"deferred"`
EscalationResolved int `json:"escalation_resolved"` // a larger tier produced an accepted answer
ReasoningReclaimed int `json:"reasoning_reclaimed"` // completed via the terminal reasoning tier
LabeledGrounded int `json:"labeled_grounded"`
Grounded int `json:"grounded"`
LowMarginAccepts int `json:"low_margin_accepts"` // accepted but margin in (0, threshold)
DeferRate float64 `json:"defer_rate"`
GroundedRate float64 `json:"grounded_rate"`
TokensOut int `json:"tokens_out"`
}
Click to show internal directories.
Click to hide internal directories.