Emitted when the code interpreter call is completed.

interface ResponseCodeInterpreterCallCompletedEvent {
    code_interpreter_call: ResponseCodeInterpreterToolCall;
    output_index: number;
    type: "response.code_interpreter_call.completed";
}

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

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