interface PipelineEOUMetrics {
    endOfUtteranceDelay: number;
    sequenceId: string;
    timestamp: number;
    transcriptionDelay: number;
}

Properties

endOfUtteranceDelay: number

Amount of time between the end of speech from VAD and the decision to end the user's turn

sequenceId: string

Unique identifier shared across different metrics to combine related STT, LLM, and TTS metrics

timestamp: number

Timestamp of when the event was recorded

transcriptionDelay: number

Time taken to obtain the transcript after the end of the user's speech.

Remarks

May be 0 if the transcript was already available.