Interface LoopToolCallRequest

A single tool invocation requested by the LLM.

interface LoopToolCallRequest {
    id: string;
    name: string;
    arguments: Record<string, unknown>;
}

Properties

Properties

id: string

Unique identifier for this tool call within a response (matches the tool result).

name: string

Name of the tool to invoke.

arguments: Record<string, unknown>

Parsed arguments to pass to the tool.