dd-trace
    Preparing search index...

    Interface ToolCall

    Represents a single tool call for an LLM chat model message

    interface ToolCall {
        arguments?: { [key: string]: any };
        name?: string;
        toolId?: string;
        type?: string;
    }
    Index

    Properties

    arguments?: { [key: string]: any }

    Arguments passed to the tool

    name?: string

    Name of the tool

    toolId?: string

    The tool ID

    type?: string

    The tool type