The type of the parameters for the tool, defaults to a record of ToolValue.
Optional
callbacksOptional lifecycle callbacks for the tool, allowing customization of execution flow.
Optional
docOptional description for documentation purposes, aiding in tool usage understanding.
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).
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.
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.
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.
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).
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.
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.
The unique name of the tool, used for identification within the agent swarm.
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.
Optional
validateValidates the tool parameters before execution. Can return synchronously or asynchronously based on validation complexity.
True if parameters are valid, false otherwise.
Executes the tool with the specified parameters and context.
The data transfer object containing execution details.
The name of the agent using the tool.
The ID of the client invoking the tool.
Indicates if this is the last tool call in a sequence.
The parameters for the tool execution.
The list of tool calls in the current execution context.
The unique tool_call_id
for tracking in OpenAI-style history.
A promise that resolves when the tool execution is complete.
Interface representing a tool used by an agent, extending the base ITool interface. Defines the tool's execution and validation logic, with optional lifecycle callbacks.