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

    Type Alias LLMMessage

    Minimal message shape shared across estimators.

    content may be a plain string (backward-compatible with v1) or an array of content blocks for multimodal requests.

    type LLMMessage = {
        content: string | ContentBlock[];
        role: string;
    }
    Index
    content: string | ContentBlock[]
    role: string