Interface representing a tool definition within the swarm system. Defines the metadata and schema for a callable tool, used by agents (e.g., ClientAgent) to provide the model with available functions and validate/execute tool calls. Integrated into IAgentParams.tools and passed to ICompletion.getCompletion, enabling the model to generate IToolCall requests based on this specification.

interface ITool {
    function: {
        description: string;
        name: string;
        parameters: {
            properties: {
                [key: string]: { description: string; enum?: string[]; type: string };
            };
            required: string[];
            type: string;
        };
    };
    type: string;
}

Hierarchy (View Summary)

Properties

Properties

function: {
    description: string;
    name: string;
    parameters: {
        properties: {
            [key: string]: { description: string; enum?: string[]; type: string };
        };
        required: string[];
        type: string;
    };
}

The function details defining the tool’s capabilities. Provides the name, description, and parameter schema for the tool, used by the model to understand and invoke it (e.g., in ClientAgent.getCompletion). Matched against IToolCall.function during execution (e.g., EXECUTE_FN’s targetFn lookup).

Type declaration

  • description: string

    A human-readable description of the function’s purpose. Informs the model or users about the tool’s functionality (e.g., "Performs a search query"), used in tool selection or documentation. Not directly executed but critical for model understanding in ClientAgent workflows.

  • name: string

    The name of the function, uniquely identifying the tool. Must match IToolCall.function.name for execution (e.g., "search" in ClientAgent.tools), serving as the key for tool lookup and invocation. Example: "calculate" for a math tool.

  • parameters: {
        properties: {
            [key: string]: { description: string; enum?: string[]; type: string };
        };
        required: string[];
        type: string;
    }

    The schema defining the parameters required by the function. Specifies the structure, types, and constraints of arguments (e.g., IToolCall.function.arguments), validated in ClientAgent (e.g., targetFn.validate). Provides the model with a blueprint for generating valid tool calls.

    • properties: { [key: string]: { description: string; enum?: string[]; type: string } }

      A key-value map defining the properties of the parameters. Details each argument’s type, description, and optional constraints, guiding the model and agent in constructing and validating tool calls (e.g., in ClientAgent.EXECUTE_FN).

    • required: string[]

      An array of parameter names that are mandatory for the function. Lists keys that must be present in IToolCall.function.arguments, enforced during validation (e.g., ClientAgent.targetFn.validate). Example: ["query"] for a search tool requiring a query string.

    • type: string

      The type of the parameters object, typically "object". Indicates that parameters are a key-value structure, as expected by IToolCall.function.arguments in ClientAgent. Example: "object" for a standard JSON-like parameter set.

type: string

The type of the tool, typically "function" in the current system. Specifies the tool’s category, aligning with IToolCall.type, though only "function" is observed in ClientAgent usage (e.g., params.tools). Future extensions might include other types (e.g., "api", "script"), but "function" is standard.