StreamingWord: {
    channel?: Channel;
    channelResolved?: boolean;
    confidence: number;
    end: number;
    speaker?: string;
    start: number;
    text: string;
    word_is_final: boolean;
}

Type declaration

  • Optionalchannel?: Channel

    Physical input channel attributed by client-side VAD during this word's time window. Populated only when the transcriber is configured with channels. Independent from speaker.

  • OptionalchannelResolved?: boolean

    True if channel was filled in by channelAttribution.resolveUnknownChannelsMethod rather than by the per-word VAD. Only set on words whose per-word VAD attribution was "unknown" and whose resolution method produced a confident channel. Useful for debugging or rendering an indicator that a word's channel came from context, not direct VAD evidence.

  • confidence: number
  • end: number
  • Optionalspeaker?: string
  • start: number
  • text: string
  • word_is_final: boolean