@squidcloud/client
    Preparing search index...

    Interface AiVoiceSessionTurn

    One spoken turn of a voice session.

    interface AiVoiceSessionTurn {
        at: string;
        role: "user" | "agent";
        text: string;
    }
    Index
    at: string

    When the turn completed, as an ISO timestamp.

    role: "user" | "agent"

    Who spoke.

    text: string

    What was said, as transcribed (user) or generated (agent).