Interface TranscriptEntry

A single entry in a call transcript.

interface TranscriptEntry {
    timestamp: number;
    speaker: "user" | "bot";
    text: string;
    isFinal: boolean;
}

Properties

timestamp: number

Unix timestamp (ms) when this was recorded.

speaker: "user" | "bot"

Who spoke.

text: string

The spoken text.

isFinal: boolean

Whether this is a finalized transcript (vs. partial/streaming).