AAI SDK
    Preparing search index...

    Interface TtsError

    Error raised by a TTS provider stream, with a typed code naming the failure phase: connecting, authenticating, or mid-stream.

    interface TtsError {
        cause?: unknown;
        code: "tts_connect_failed" | "tts_auth_failed" | "tts_stream_error";
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy

    • Error
      • TtsError
    Index
    cause?: unknown
    code: "tts_connect_failed" | "tts_auth_failed" | "tts_stream_error"
    message: string
    name: string
    stack?: string