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

Sent when an eval run has failed.

Fields

  • :created_at - required - integer()
    The Unix timestamp (in seconds) of when the eval run failed.

  • :data - required - {:%{}, [], [{{:required, [], [:id]}, {{:., [], [{:__aliases__, [alias: false], [:String]}, :t]}, [], []}}]}
    Event data payload.

  • :id - required - String.t()
    The unique ID of the event.

  • :object - optional - :event
    The object of the event. Always event.
    Allowed values: "event"

  • :type - required - :"eval.run.failed"
    The type of the event. Always eval.run.failed.
    Allowed values: "eval.run.failed"

Summary

Types

@type t() :: %ExOpenAI.Components.WebhookEvalRunFailed{
  created_at: integer(),
  data: %{id: String.t()},
  id: String.t(),
  object: :event | nil,
  type: :"eval.run.failed"
}