@microsoft/opentelemetry
    Preparing search index...

    Interface ToolCallDetails

    Details of a tool call made by an agent.

    interface ToolCallDetails {
        arguments?: string | Record<string, unknown>;
        description?: string;
        endpoint?: ServiceEndpoint;
        toolCallId?: string;
        toolName: string;
        toolType?: string;
    }
    Index
    arguments?: string | Record<string, unknown>

    Arguments passed to the tool, as an object or serialized string.

    description?: string

    Human-readable description of the tool.

    endpoint?: ServiceEndpoint

    Endpoint the tool is hosted on.

    toolCallId?: string

    Unique identifier of the tool call.

    toolName: string

    Name of the tool being called (required).

    toolType?: string

    Category/type of the tool (e.g. function).