interface ComputerCallOutput {
    acknowledged_safety_checks?: AcknowledgedSafetyCheck[];
    call_id: string;
    id: string;
    output: Output;
    status?: "in_progress" | "completed" | "incomplete";
    type: "computer_call_output";
}

Properties

acknowledged_safety_checks?: AcknowledgedSafetyCheck[]

The safety checks reported by the API that have been acknowledged by the developer.

call_id: string

The ID of the computer tool call that produced the output.

id: string

The unique ID of the computer call tool output.

output: Output

A computer screenshot image used with the computer use tool.

status?: "in_progress" | "completed" | "incomplete"

The status of the message input. One of in_progress, completed, or incomplete. Populated when input items are returned via API.

type: "computer_call_output"

The type of the computer tool call output. Always computer_call_output.