langchain.js
    Preparing search index...

    Interface ExecutedToolCall

    Information about a tool call that has been executed.

    interface ExecutedToolCall {
        args: Record<string, unknown>;
        name: string;
        result?: unknown;
        tool_id: string;
    }
    Index

    Properties

    args: Record<string, unknown>

    The arguments that were passed to the tool.

    name: string

    The name of the tool that was called.

    result?: unknown

    The result of the tool call (if available).

    tool_id: string

    The ID of the tool call.