mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 05:20:48 +00:00
12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
import { createMemoryGetTool, createMemorySearchTool } from "../../agents/tools/memory-tool.js";
|
|
import { registerMemoryCli } from "../../cli/memory-cli.js";
|
|
import type { PluginRuntime } from "./types.js";
|
|
|
|
export function createRuntimeTools(): PluginRuntime["tools"] {
|
|
return {
|
|
createMemoryGetTool,
|
|
createMemorySearchTool,
|
|
registerMemoryCli,
|
|
};
|
|
}
|