import { ToolRegistration } from '../services/tools'; import { AISystem } from '../core/AISystem'; /** * 基础工具插件,提供内置的基本功能 */ export declare class BasicToolsPlugin { private logger; private config; private adapter; constructor(aiSystem: AISystem); getName(): string; /** * 获取所有基础工具注册项 */ getTools(): ToolRegistration[]; /** * 创建记忆搜索工具 */ private createSearchMemoriesToolRegistration; /** * 创建添加记忆工具 */ private createAddMemoryToolRegistration; /** * 创建网络搜索工具 */ private createWebSearchToolRegistration; }