mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-05-09 03:00:20 -04: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,
|
|
};
|
|
}
|