import type { ToolDefinition } from "@mariozechner/pi-coding-agent"; /** * 创建 memory_recall 工具:按需从向量库检索经验与对话摘要,供回答「过往工作、决定、日期、人、偏好、待办、复杂任务、定时任务、历史经验」等问题时使用。 * @param useLongMemory 当前智能体是否启用长记忆;为 false 时执行空转(不检索,直接返回未启用提示)。 */ export declare function createMemoryRecallTool(useLongMemory: boolean): ToolDefinition;