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

Module for representing the OpenAI schema CompleteUploadRequest.

Fields

  • :md5 - optional - String.t()
    The optional md5 checksum for the file contents to verify if the bytes uploaded matches what you expect.

  • :part_ids - required - [String.t()]
    The ordered list of Part IDs.

Summary

Types

@type t() :: %ExOpenAI.Components.CompleteUploadRequest{
  md5: String.t() | nil,
  part_ids: [String.t()]
}