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

interface ResponseCodeInterpreterCallInterpretingEvent {
    code_interpreter_call: ResponseCodeInterpreterToolCall;
    output_index: number;
    type: "response.code_interpreter_call.interpreting";
}

Properties

code_interpreter_call: ResponseCodeInterpreterToolCall

A tool call to run code.

output_index: number

The index of the output item that the code interpreter call is in progress.

type: "response.code_interpreter_call.interpreting"

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