RealtimeBaseTranscript: {
    audio_end: number;
    audio_start: number;
    confidence: number;
    created: Date;
    text: string;
    words: Word[];
}

Type declaration

  • audio_end: number

    End time of audio sample relative to session start, in milliseconds

  • audio_start: number

    Start time of audio sample relative to session start, in milliseconds

  • confidence: number

    The confidence score of the entire transcription, between 0 and 1

  • created: Date

    The timestamp for the partial transcript

  • text: string

    The partial transcript for your audio

  • words: Word[]

    An array of objects, with the information for each word in the transcription text. Includes the start and end time of the word in milliseconds, the confidence score of the word, and the text, which is the word itself.