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

Indicates that a thread has been closed.

Fields

  • :reason - required - String.t() | any()

  • :type - required - :closed
    Status discriminator that is always closed.
    Allowed values: "closed"
    Default: "closed"

Summary

Types

@type t() :: %ExOpenAI.Components.ClosedStatus{
  reason: String.t() | any(),
  type: :closed
}