Emitted when a code interpreter call is in progress.

interface ResponseCodeInterpreterCallInProgressEvent {
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.code_interpreter_call.in_progress";
}

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 in progress.

sequence_number: number

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

type: "response.code_interpreter_call.in_progress"

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