feat(memory): add memory tools module with user profile operations

This commit is contained in:
jinli.yl 2026-01-22 23:48:13 +08:00
parent 30990308d8
commit af44052a57
2 changed files with 17 additions and 0 deletions

View file

@ -1,9 +1,11 @@
"""Tool"""
from . import gallery
from . import memory
from . import search
__all__ = [
"gallery",
"memory",
"search",
]

View file

@ -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)