Skip to content

Commit 4e5c202

Browse files
committed
feat: add memory_search tool (v0.1.7)
1 parent e2576cd commit 4e5c202

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,12 @@ export default definePluginEntry({
5757
new LetheContextEngine({ endpoint, apiKey, agentId, projectId })
5858
);
5959

60-
// Register memory tools: memory.record, memory.log, memory.flag, memory.task
60+
// Register memory tools: memory.record, memory.log, memory.flag, memory.task, memory_search
6161
const tools = new LetheTools({ endpoint, apiKey, agentId, projectId });
6262
api.registerTool(() => tools.getRecordTool());
6363
api.registerTool(() => tools.getLogTool());
6464
api.registerTool(() => tools.getFlagTool());
6565
api.registerTool(() => tools.getTaskTool());
66+
api.registerTool(() => tools.getSearchTool());
6667
},
6768
});

0 commit comments

Comments
 (0)