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

Schema representing a ComputerToolCall within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ComputerToolCall{
  action: ExOpenAI.Components.ComputerAction.t(),
  call_id: String.t(),
  id: String.t(),
  pending_safety_checks: [ExOpenAI.Components.ComputerToolCallSafetyCheck.t()],
  status: :incomplete | :completed | :in_progress,
  type: :computer_call
}