Emitted when a code interpreter call is in progress.

interface ResponseCodeInterpreterCallInProgressEvent {
    code_interpreter_call: ResponseCodeInterpreterToolCall;
    output_index: number;
    type: "response.code_interpreter_call.in_progress";
}

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.in_progress"

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