EOUMetrics: {
    endOfUtteranceDelayMs: number;
    onUserTurnCompletedDelayMs: number;
    speechId?: string;
    timestamp: number;
    transcriptionDelayMs: number;
    type: "eou_metrics";
}

Type declaration

  • endOfUtteranceDelayMs: number

    Amount of time between the end of speech from VAD and the decision to end the user's turn. Set to 0.0 if the end of speech was not detected.

  • onUserTurnCompletedDelayMs: number

    Time taken to invoke the user's Agent.onUserTurnCompleted callback.

  • Optional speechId?: string
  • timestamp: number
  • transcriptionDelayMs: number

    Time taken to obtain the transcript after the end of the user's speech. Set to 0.0 if the end of speech was not detected.

  • type: "eou_metrics"