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

A pending safety check for the computer call.

Fields

  • :code - optional - String.t() | any()

  • :id - required - String.t()
    The ID of the pending safety check.

  • :message - optional - String.t() | any()

Summary

Types

@type t() :: %ExOpenAI.Components.ComputerCallSafetyCheckParam{
  code: (String.t() | any()) | nil,
  id: String.t(),
  message: (String.t() | any()) | nil
}