coldbydefault-portfolio
    Preparing search index...

    Interface ChatBotApiError

    interface ChatBotApiError {
        code?:
            | "RATE_LIMIT_EXCEEDED"
            | "INVALID_INPUT"
            | "SERVICE_UNAVAILABLE"
            | "UNAUTHORIZED";
        details?: Record<string, unknown>;
        error: string;
    }
    Index

    Properties

    Properties

    code?:
        | "RATE_LIMIT_EXCEEDED"
        | "INVALID_INPUT"
        | "SERVICE_UNAVAILABLE"
        | "UNAUTHORIZED"
    details?: Record<string, unknown>
    error: string