From 40feaa915099f926e8c821fe15f0cf54987cd028 Mon Sep 17 00:00:00 2001 From: jinliyl <6469360+jinliyl@users.noreply.github.com> Date: Tue, 19 May 2026 16:20:09 +0800 Subject: [PATCH] fix(core): correct tool results directory naming (#246) - Changed directory name from 'tool_result' to 'tool_results' in documentation - Updated path variable assignment to use correct plural form 'tool_results' - Ensured consistent directory naming throughout initialization logic --- reme/reme_light.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reme/reme_light.py b/reme/reme_light.py index ca52a394..60f0a6c9 100644 --- a/reme/reme_light.py +++ b/reme/reme_light.py @@ -119,7 +119,7 @@ class ReMeLight(Application): The following directory structure will be created: - {working_dir}/ - Root working directory - {working_dir}/memory/ - Memory storage files - - {working_dir}/tool_result/ - Compacted tool result files + - {working_dir}/tool_results/ - Compacted tool result files - {working_dir}/dialog/ - Raw conversation records """ # Initialize working directory structure @@ -127,7 +127,7 @@ class ReMeLight(Application): self.working_path.mkdir(parents=True, exist_ok=True) self.memory_path = self.working_path / "memory" self.memory_path.mkdir(parents=True, exist_ok=True) - self.tool_result_path = self.working_path / "tool_result" + self.tool_result_path = self.working_path / "tool_results" self.tool_result_path.mkdir(parents=True, exist_ok=True) self.dialog_path = self.working_path / "dialog" self.dialog_path.mkdir(parents=True, exist_ok=True)