Interface ToolInvocationRegistry

Registry for all the function calls available to Agents.

interface ToolInvocationRegistry {
    getFunction(toolId): undefined | ToolRequest;
    getFunctions(...toolIds): ToolRequest[];
    registerTool(tool): void;
}

Implemented by

Methods