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

The aggregated audio transcriptions usage details of the specific time bucket.

Fields

  • :api_key_id - optional - String.t() | any()

  • :model - optional - String.t() | any()

  • :num_model_requests - required - integer()
    The count of requests made to the model.

  • :object - required - :"organization.usage.audio_transcriptions.result"
    Allowed values: "organization.usage.audio_transcriptions.result"

  • :project_id - optional - String.t() | any()

  • :seconds - required - integer()
    The number of seconds processed.

  • :user_id - optional - String.t() | any()

Summary

Types

@type t() :: %ExOpenAI.Components.UsageAudioTranscriptionsResult{
  api_key_id: (String.t() | any()) | nil,
  model: (String.t() | any()) | nil,
  num_model_requests: integer(),
  object: :"organization.usage.audio_transcriptions.result",
  project_id: (String.t() | any()) | nil,
  seconds: integer(),
  user_id: (String.t() | any()) | nil
}