Type alias UserTurnExceededEvent

UserTurnExceededEvent: {
    accumulatedTranscript: string;
    accumulatedWordCount: number;
    createdAt: number;
    duration: number;
    transcript: string;
    type: "user_turn_exceeded";
}

Type declaration

  • accumulatedTranscript: string

    Full transcript since the start of user speaking in the accumulation window.

  • accumulatedWordCount: number

    Total word count since the start of user speaking in the accumulation window.

  • createdAt: number
  • duration: number

    Duration of the user turn accumulation window in milliseconds.

  • transcript: string

    Transcript from the current uncommitted user turn only.

  • type: "user_turn_exceeded"