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

Instruction describing how to delete a file via the apply_patch tool.

Fields

  • :path - required - String.t()
    Path of the file to delete.

  • :type - required - :delete_file
    Delete the specified file.
    Allowed values: "delete_file"
    Default: "delete_file"

Summary

Types

@type t() :: %ExOpenAI.Components.ApplyPatchDeleteFileOperation{
  path: String.t(),
  type: :delete_file
}