UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

8 lines (7 loc) 271 B
import { StandardTool, IToolManager } from './types/tool'; export declare class ToolManager implements IToolManager { private tools; registerTool(tool: StandardTool): void; getTool(name: string): StandardTool | undefined; getAllTools(): StandardTool[]; }