nexus-agents - v2.80.0
    Preparing search index...

    Interface AgenticToolCall

    Tool call emitted by the model.

    Mirrors the Anthropic Messages API tool_use ContentBlock shape; the wrapper translates whatever the underlying provider produces into this canonical form so harnesses don't care which provider they're talking to.

    interface AgenticToolCall {
        id: string;
        name: string;
        arguments: Record<string, unknown>;
    }
    Index

    Properties

    Properties

    id: string

    Unique id for this tool call, threaded back through tool_use_id.

    name: string

    Tool name (must match a ToolDefinition.name from the input).

    arguments: Record<string, unknown>

    Arguments — already JSON-parsed; provider-side is responsible for parsing.