View Source ExOpenAI.Components.ListBatchesResponse (ex_openai.ex v1.7.0)

Schema representing a ListBatchesResponse within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ListBatchesResponse{
  data: [ExOpenAI.Components.Batch.t()],
  first_id: String.t() | nil,
  has_more: boolean(),
  last_id: String.t() | nil,
  object: :list
}