@microsoft/opentelemetry
    Preparing search index...

    Interface ToolCallRequestPart

    A tool call requested by the model.

    interface ToolCallRequestPart {
        arguments?: unknown[] | Record<string, unknown>;
        id?: string;
        name: string;
        type: "tool_call";
    }
    Index
    arguments?: unknown[] | Record<string, unknown>

    Arguments passed to the tool, as an object or positional array.

    id?: string

    Unique identifier correlating this call with its response.

    name: string

    The name of the tool being called.

    type: "tool_call"

    Discriminator identifying this as a tool-call request part.