@squidcloud/client
    Preparing search index...

    Interface AiTranscribeAndAskResponse

    Response structure for transcribing audio and asking an AI agent a question.

    interface AiTranscribeAndAskResponse {
        annotations?: Record<string, AiFileAnnotation>;
        responseString: string;
        transcribedPrompt: string;
    }
    Index

    Properties

    annotations?: Record<string, AiFileAnnotation>

    The annotations associated with the AI response, if any.

    responseString: string

    The AI agent's response to the transcribed prompt.

    transcribedPrompt: string

    The transcribed text from the audio input.