AutoBE
    Preparing search index...

    Interface AutoBeUserAudioConversateContent

    interface AutoBeUserAudioConversateContent {
        format: "wav" | "mp3";
        type: "audio";
        url: string & Format<"iri">;
    }

    Hierarchy

    • AutoBeUserConversateContentBase<"audio">
      • AutoBeUserAudioConversateContent
    Index

    Properties

    Properties

    format: "wav" | "mp3"

    Audio codec/container format used for the voice input.

    type: "audio"

    Type discriminator for identifying the specific content modality.

    Provides type-safe discrimination between different content types such as "text", "audio", "image", and "file". This discriminator enables proper type narrowing and ensures that each content type is processed according to its specific characteristics and requirements.

    The type field is essential for the multimodal content processing pipeline, allowing the system to route different content types to appropriate handlers while maintaining type safety throughout the conversation flow.

    url: string & Format<"iri">

    URL or data URL from which the audio bytes can be read.