()
| 34 | |
| 35 | /** Creates an empty totals accumulator. */ |
| 36 | export function createPiTotals(): PiRunTotals { |
| 37 | return { finalText: '', inputTokens: 0, outputTokens: 0, toolCalls: [] } |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Folds a normalized event into the totals. Text deltas accumulate into |
no outgoing calls
no test coverage detected