unified-llm-client
    Preparing search index...

    Interface LLMErrorOptions

    Metadata attached to typed LLM errors.

    interface LLMErrorOptions {
        cause?: unknown;
        details?: Record<string, unknown>;
        model?: string;
        provider?: CanonicalProvider;
        requestId?: string;
        retryable?: boolean;
        statusCode?: number;
    }
    Index

    Properties

    cause?: unknown
    details?: Record<string, unknown>
    model?: string
    requestId?: string
    retryable?: boolean
    statusCode?: number