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

Upload permissions and limits applied to the session.

Fields

  • :enabled - required - boolean()
    Indicates if uploads are enabled for the session.

  • :max_file_size - required - integer() | any()

  • :max_files - required - integer() | any()

Summary

Types

@type t() :: %ExOpenAI.Components.ChatSessionFileUpload{
  enabled: boolean(),
  max_file_size: integer() | any(),
  max_files: integer() | any()
}