mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
feat(memory): add working memory operations to retrieve and summary modules
This commit is contained in:
parent
55eb1f87bc
commit
32bfef63f8
2 changed files with 7 additions and 1 deletions
|
|
@ -4,14 +4,17 @@ This module provides submodules for different types of memory retrieval:
|
|||
- personal: Personal memory retrieval operations
|
||||
- task: Task memory retrieval operations
|
||||
- tool: Tool memory retrieval operations
|
||||
- working: Working-memory retrieval operations
|
||||
"""
|
||||
|
||||
from . import personal
|
||||
from . import task
|
||||
from . import tool
|
||||
from . import working
|
||||
|
||||
__all__ = [
|
||||
"personal",
|
||||
"task",
|
||||
"tool",
|
||||
"working",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,17 +1,20 @@
|
|||
"""Summary operations module.
|
||||
"""Summary operations' module.
|
||||
|
||||
This module provides summary operations for different types of memories:
|
||||
- Personal memory summary operations
|
||||
- Task memory summary operations
|
||||
- Tool memory summary operations
|
||||
- Working memory summary operations
|
||||
"""
|
||||
|
||||
from . import personal
|
||||
from . import task
|
||||
from . import tool
|
||||
from . import working
|
||||
|
||||
__all__ = [
|
||||
"personal",
|
||||
"task",
|
||||
"tool",
|
||||
"working",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue