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

    Type Alias LLMWouldAdmitResult

    Result of wouldAdmit() (v3.8: optional capacity snapshot).

    detail is present only when the call passed detail: true. It is the same LLMRejectDetail snapshot attached to real rejections — including on an admit: true result, where it describes the capacity the request would be admitted against. Like the boolean itself, it is advisory: capacity can change before a subsequent acquire().

    type LLMWouldAdmitResult = {
        admit: boolean;
        detail?: LLMRejectDetail;
        reason?: LLMRejectReason;
    }
    Index
    admit: boolean