| 94 | |
| 95 | |
| 96 | class AggregateOps(BaseModel): |
| 97 | tokens_in_total: int = 0 |
| 98 | tokens_out_total: int = 0 |
| 99 | duration_ms_p50: float | None = None |
| 100 | duration_ms_p95: float | None = None |
| 101 | tool_calls_total: int = 0 |
| 102 | est_cost_usd_total: float | None = None |
| 103 | |
| 104 | |
| 105 | class TypeBreakdown(BaseModel): |