async-bulkhead-llm - v3.17.0
    Preparing search index...

    Type Alias TokenUsage

    Actual token usage returned by the provider after a call completes.

    In v2, this drives the refund mechanism: when usage is reported at release time, the difference between the pre-admission reservation and actual consumption is returned to the budget immediately.

    type TokenUsage = {
        input: number;
        output: number;
    }
    Index
    input: number
    output: number