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

Module for representing the OpenAI schema CreateContainerFileBody.

Fields

  • :file - optional - binary()
    The File object (not file name) to be uploaded.
    Format: binary

  • :file_id - optional - String.t()
    Name of the file to create.

Summary

Types

@type t() :: %ExOpenAI.Components.CreateContainerFileBody{
  file: binary() | nil,
  file_id: String.t() | nil
}