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

The output of a computer tool call.

Fields

  • :acknowledged_safety_checks - optional - [ExOpenAI.Components.ComputerCallSafetyCheckParam.t()] | any()

  • :call_id - required - String.t()
    The ID of the computer tool call that produced the output.
    Constraints: minLength: 1, maxLength: 64

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

  • :output - required - ExOpenAI.Components.ComputerScreenshotImage.t()

  • :status - optional - ExOpenAI.Components.FunctionCallItemStatus.t() | any()

  • :type - required - :computer_call_output
    The type of the computer tool call output. Always computer_call_output.
    Allowed values: "computer_call_output"
    Default: "computer_call_output"

Summary

Types

@type t() :: %ExOpenAI.Components.ComputerCallOutputItemParam{
  acknowledged_safety_checks:
    ([ExOpenAI.Components.ComputerCallSafetyCheckParam.t()] | any()) | nil,
  call_id: String.t(),
  id: (String.t() | any()) | nil,
  output: ExOpenAI.Components.ComputerScreenshotImage.t(),
  status: (ExOpenAI.Components.FunctionCallItemStatus.t() | any()) | nil,
  type: :computer_call_output
}