View Source ExOpenAI.Components.ComputerToolCallOutput (ex_openai.ex v1.8.0)

Schema representing a ComputerToolCallOutput within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ComputerToolCallOutput{
  acknowledged_safety_checks:
    [ExOpenAI.Components.ComputerToolCallSafetyCheck.t()] | nil,
  call_id: String.t(),
  id: String.t() | nil,
  output: ExOpenAI.Components.ComputerScreenshotImage.t(),
  status: (:incomplete | :completed | :in_progress) | nil,
  type: :computer_call_output
}