Emitted when the code interpreter call is completed.

interface ResponseCodeInterpreterCallCompletedEvent {
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.code_interpreter_call.completed";
}

Properties

item_id: string

The unique identifier of the code interpreter tool call item.

output_index: number

The index of the output item in the response for which the code interpreter call is completed.

sequence_number: number

The sequence number of this event, used to order streaming events.

type: "response.code_interpreter_call.completed"

The type of the event. Always response.code_interpreter_call.completed.