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

Schema representing a VectorStoreFileBatchObject within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.VectorStoreFileBatchObject{
  created_at: integer(),
  file_counts: %{
    cancelled: integer(),
    completed: integer(),
    failed: integer(),
    in_progress: integer(),
    total: integer()
  },
  id: String.t(),
  object: :"vector_store.files_batch",
  status: :failed | :cancelled | :completed | :in_progress,
  vector_store_id: String.t()
}