feat: add memory tool (#10637)

Add a tool for memory to retrieve a full memory based on the memory ID
This commit is contained in:
jif-oai
2026-02-05 16:16:31 +00:00
committed by GitHub
parent fe1cbd0f38
commit 41f3b1ba0b
7 changed files with 232 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
pub mod apply_patch;
pub(crate) mod collab;
mod dynamic;
mod get_memory;
mod grep_files;
mod list_dir;
mod mcp;
@@ -20,6 +21,7 @@ use crate::function_tool::FunctionCallError;
pub use apply_patch::ApplyPatchHandler;
pub use collab::CollabHandler;
pub use dynamic::DynamicToolHandler;
pub use get_memory::GetMemoryHandler;
pub use grep_files::GrepFilesHandler;
pub use list_dir::ListDirHandler;
pub use mcp::McpHandler;