Emitted when the code interpreter is actively interpreting the code snippet.

interface ResponseCodeInterpreterCallInterpretingEvent {
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.code_interpreter_call.interpreting";
}

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 is interpreting code.

sequence_number: number

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

type: "response.code_interpreter_call.interpreting"

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