@squidcloud/client
    Preparing search index...

    Interface TranscribeAndAskWithVoiceResponse

    Response format for transcribing audio and generating a text and voice response. Includes the transcribed prompt, the AI-generated response as text, and an audio file.

    interface TranscribeAndAskWithVoiceResponse {
        responseString: string;
        transcribedPrompt: string;
        voiceResponseFile: File;
    }
    Index

    Properties

    responseString: string

    AI-generated response as a string.

    transcribedPrompt: string

    Transcribed text from the audio input.

    voiceResponseFile: File

    AI-generated voice response as an audio file.