The type of the tool's input/output data, defaulting to a record of string keys and ToolValue
values if unspecified.
The schema defining the tool's properties, including its name (toolName
) and other configuration details (e.g., function, description).
The name of the newly added tool (toolSchema.toolName
), confirming its registration.
Adds a new tool to the tool registry for use by agents in the swarm system.
This function registers a new tool, enabling agents within the swarm to utilize it for performing specific tasks or operations. Tools must be registered through this function to be recognized by the swarm, though the original comment suggests an association with
addAgent
, likely intending that tools are linked to agent capabilities. The execution is wrapped inbeginContext
to ensure it runs outside of existing method and execution contexts, providing a clean execution environment. The function logs the operation if enabled and returns the tool's name upon successful registration.Throws
If the tool schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate tool name).
Example