ART Framework API Docs
    Preparing search index...

    Interface ParsedToolCall

    Represents a parsed request from the LLM to call a specific tool.

    ParsedToolCall

    interface ParsedToolCall {
        arguments: any;
        callId: string;
        toolName: string;
    }
    Index

    Properties

    arguments: any

    The arguments object, parsed from the LLM response, intended to be passed to the tool's execute method after validation.

    callId: string

    A unique identifier generated by the OutputParser for this specific tool call request within a plan.

    toolName: string

    The name of the tool the LLM intends to call. Must match a registered tool's schema name.