diff --git a/run_agent.py b/run_agent.py index 9366d49bb..f148eb650 100644 --- a/run_agent.py +++ b/run_agent.py @@ -889,8 +889,6 @@ def _build_tool_preview(tool_name: str, args: dict, max_len: int = 40) -> str: return f"~{target}: \"{args.get('old_text', '')[:20]}\"" elif action == "remove": return f"-{target}: \"{args.get('old_text', '')[:20]}\"" - elif action == "read": - return f"read {target}" return action if tool_name == "send_message": @@ -1531,8 +1529,6 @@ class AIAgent: elif action == "remove": snippet = _trunc(args.get("old_text", ""), 20) return f"┊ 🧠 memory -{target}: \"{snippet}\" {dur}" - elif action == "read": - return f"┊ 🧠 memory read {target} {dur}" elif action == "search_sessions": query = _trunc(args.get("content", ""), 30) return f"┊ 🧠 recall \"{query}\" {dur}" diff --git a/tools/memory_tool.py b/tools/memory_tool.py index ad303c531..68fbaa56a 100644 --- a/tools/memory_tool.py +++ b/tools/memory_tool.py @@ -203,10 +203,6 @@ class MemoryStore: return self._success_response(target, "Entry removed.") - def read(self, target: str) -> Dict[str, Any]: - """Return live current entries and usage stats.""" - return self._success_response(target) - def format_for_system_prompt(self, target: str) -> Optional[str]: """ Return the frozen snapshot for system prompt injection. @@ -328,11 +324,8 @@ def memory_tool( return json.dumps({"success": False, "error": "old_text is required for 'remove' action."}, ensure_ascii=False) result = store.remove(target, old_text) - elif action == "read": - result = store.read(target) - else: - return json.dumps({"success": False, "error": f"Unknown action '{action}'. Use: add, replace, remove, read"}, ensure_ascii=False) + return json.dumps({"success": False, "error": f"Unknown action '{action}'. Use: add, replace, remove"}, ensure_ascii=False) return json.dumps(result, ensure_ascii=False) @@ -351,7 +344,7 @@ MEMORY_SCHEMA = { "description": ( "Manage persistent memory (visible in system prompt). Targets: " "'memory' (your notes) or 'user' (user profile).\n" - "Actions: add, replace, remove, read. For replace/remove, old_text " + "Actions: add, replace, remove. For replace/remove, old_text " "is a short unique snippet to identify the entry.\n" "Usage indicator in system prompt shows capacity. When >80%, " "consolidate/replace before adding. Prefer replacing over removing.\n" @@ -363,7 +356,7 @@ MEMORY_SCHEMA = { "properties": { "action": { "type": "string", - "enum": ["add", "replace", "remove", "read"], + "enum": ["add", "replace", "remove"], "description": "The action to perform." }, "target": {