| 557 | // --- Budget regression assertion --- |
| 558 | |
| 559 | export interface BudgetRegression { |
| 560 | testName: string; |
| 561 | metric: 'tools' | 'turns'; |
| 562 | before: number; |
| 563 | after: number; |
| 564 | ratio: number; |
| 565 | } |
| 566 | |
| 567 | /** |
| 568 | * Compute budget regressions: tests where tool calls or turns grew by more |
nothing calls this directly
no outgoing calls
no test coverage detected