@squidcloud/client
    Preparing search index...

    Interface TranscribeAndChatResponse

    Response format for transcribing audio and generating a chat response. Contains the transcribed text and a stream of AI-generated responses.

    interface TranscribeAndChatResponse {
        responseStream: Observable<string>;
        transcribedPrompt: string;
    }
    Index

    Properties

    responseStream: Observable<string>

    Stream of AI-generated responses.

    transcribedPrompt: string

    Transcribed text from the audio input.