mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
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
This commit is contained in:
parent
bee2648ad1
commit
40feaa9150
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue