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

The aggregated images usage details of the specific time bucket.

Fields

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

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

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

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

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

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

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

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

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

Summary

Types

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