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

Indicates that a thread is locked and cannot accept new input.

Fields

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

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

Summary

Types

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