@microsoft/opentelemetry
    Preparing search index...

    Interface ToolCallRequestPart

    A tool call requested by the model.

    interface ToolCallRequestPart {
        arguments?: Record<string, unknown> | unknown[];
        id?: string;
        name: string;
        type: "tool_call";
    }
    Index
    arguments?: Record<string, unknown> | 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.