Member Junction
    Preparing search index...

    Type Alias AgentClientToolInvocation

    A single client tool invocation request from the LLM. Uses the tool's Name to look up the full metadata (description, schema).

    type AgentClientToolInvocation = {
        Description?: string;
        Name: string;
        Params: Record<string, unknown>;
        TimeoutMs?: number;
    }
    Index

    Properties

    Description?: string

    Human-readable description of why the agent is invoking this tool

    Name: string

    Name of the client tool (must match a registered ClientToolMetadata.Name)

    Params: Record<string, unknown>

    Parameters to pass to the tool (validated against InputSchema)

    TimeoutMs?: number

    Override timeout for this specific invocation