FreakingGenius - v0.1.0
    Preparing search index...

    Interface SttResult

    The completed transcript returned by STT.finalize.

    interface SttResult {
        completedAt: number;
        confidence: number;
        text: string;
        words: TranscriptWord[];
    }
    Index

    Properties

    completedAt: number

    Unix timestamp (ms) when recognition completed.

    confidence: number

    Overall confidence score in [0, 1].

    text: string

    Full transcript as a plain string.

    Word-level breakdown with timing (may be empty if the backend doesn't support it).