Text output from the Code Interpreter tool call as part of a run step.

interface CodeInterpreterLogs {
    index: number;
    type: "logs";
    logs?: string;
}

Properties

Properties

index: number

The index of the output in the outputs array.

type: "logs"

Always logs.

logs?: string

The text output from the Code Interpreter tool call.