mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-11 22:51:10 +00:00
feat(memory): add memory tools module with user profile operations
This commit is contained in:
parent
30990308d8
commit
af44052a57
2 changed files with 17 additions and 0 deletions
|
|
@ -1,9 +1,11 @@
|
|||
"""Tool"""
|
||||
|
||||
from . import gallery
|
||||
from . import memory
|
||||
from . import search
|
||||
|
||||
__all__ = [
|
||||
"gallery",
|
||||
"memory",
|
||||
"search",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
"""memory tools"""
|
||||
|
||||
from .base_memory_tool import BaseMemoryTool
|
||||
from .read_user_profile import ReadUserProfile
|
||||
from .update_user_profile import UpdateUserProfile
|
||||
from ...core import R
|
||||
|
||||
__all__ = [
|
||||
"BaseMemoryTool",
|
||||
"ReadUserProfile",
|
||||
"UpdateUserProfile",
|
||||
]
|
||||
|
||||
R.op.register()(ReadUserProfile)
|
||||
R.op.register()(UpdateUserProfile)
|
||||
Loading…
Add table
Reference in a new issue