diff --git a/src/agent/namespaces/memory/mod.rs b/src/agent/namespaces/memory/mod.rs index be6a2f3..cc7acdb 100644 --- a/src/agent/namespaces/memory/mod.rs +++ b/src/agent/namespaces/memory/mod.rs @@ -100,7 +100,7 @@ struct RecallMemory {} impl Action for RecallMemory { fn name(&self) -> &str { - "get-memory" + "recall-memory" } fn description(&self) -> &str { diff --git a/tasklets/fs_explorer/task.yml b/tasklets/fs_explorer/task.yml index 41cb8b7..ce1619a 100644 --- a/tasklets/fs_explorer/task.yml +++ b/tasklets/fs_explorer/task.yml @@ -1,6 +1,5 @@ using: - # all default namespaces - - '*' + - memory # plus this, which is not a default namespace, it must be added explicitly - filesystem @@ -9,4 +8,4 @@ system_prompt: > You are acting as a useful assistant that perform complex tasks by exploring the filesystem. prompt: > - read the file in /etc that contains mappings for hostnames to IP addresses \ No newline at end of file + read one file in /etc that contains mappings for hostnames to IP addresses and save its contents in your memory \ No newline at end of file