Details of the Code Interpreter tool call the run step was involved in.

interface CodeInterpreterToolCallDelta {
    code_interpreter?: OpenAIClient.Beta.Threads.Runs.Steps.CodeInterpreterToolCallDelta.CodeInterpreter;
    id?: string;
    index: number;
    type: "code_interpreter";
}

Properties

The Code Interpreter tool call definition.

id?: string

The ID of the tool call.

index: number

The index of the tool call in the tool calls array.

type: "code_interpreter"

The type of tool call. This is always going to be code_interpreter for this type of tool call.