()
| 3826 | } |
| 3827 | |
| 3828 | function getOutputTokenUsageAttachment(): Attachment[] { |
| 3829 | if (feature('TOKEN_BUDGET')) { |
| 3830 | const budget = getCurrentTurnTokenBudget() |
| 3831 | if (budget === null || budget <= 0) { |
| 3832 | return [] |
| 3833 | } |
| 3834 | return [ |
| 3835 | { |
| 3836 | type: 'output_token_usage', |
| 3837 | turn: getTurnOutputTokens(), |
| 3838 | session: getTotalOutputTokens(), |
| 3839 | budget, |
| 3840 | }, |
| 3841 | ] |
| 3842 | } |
| 3843 | return [] |
| 3844 | } |
| 3845 | |
| 3846 | function getMaxBudgetUsdAttachment(maxBudgetUsd?: number): Attachment[] { |
| 3847 | if (maxBudgetUsd === undefined) { |
no test coverage detected