Interface ToolHistoryEntry

Record of a single tool calling round in an auto-execute session.

interface ToolHistoryEntry {
    round: number;
    toolCalls: ToolCall[];
    toolResults: ToolExecutionResult[];
}

Properties

round: number

Zero-based round number.

toolCalls: ToolCall[]

Tool calls requested by the model in this round.

toolResults: ToolExecutionResult[]

Results of executing those tool calls.