Interface DuplexOutputTranscriptDelta

A fragment of the model's transcript of its own speech.

interface DuplexOutputTranscriptDelta {
    endMs?: number;
    startMs?: number;
    text: string;
}

Properties

Properties

endMs?: number

End of the fragment on the model's timeline, in milliseconds.

startMs?: number

Start of the fragment on the model's timeline, in milliseconds.

text: string

Text to append to the model's output transcript.