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

    Type Alias LLMReservationEstimate

    Exact token reservation the bulkhead will use for admission.

    null is returned by bulkhead.estimate() when tokenBudget is not configured, because no token reservation participates in admission in that mode.

    type LLMReservationEstimate = {
        input: number;
        maxOutput: number;
        reserved: number;
    }
    Index
    input: number
    maxOutput: number
    reserved: number