View Source ExOpenAI.Components.TranscriptionWord (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema TranscriptionWord.

Fields

  • :end - required - number()
    End time of the word in seconds.
    Format: float

  • :start - required - number()
    Start time of the word in seconds.
    Format: float

  • :word - required - String.t()
    The text content of the word.

Summary

Types

@type t() :: %ExOpenAI.Components.TranscriptionWord{
  end: number(),
  start: number(),
  word: String.t()
}