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

Attachment source referenced by an annotation.

Fields

  • :filename - required - String.t()
    Filename referenced by the annotation.

  • :type - required - :file
    Type discriminator that is always file.
    Allowed values: "file"
    Default: "file"

Summary

Types

@type t() :: %ExOpenAI.Components.FileAnnotationSource{
  filename: String.t(),
  type: :file
}