mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-19 00:01:33 +00:00
* feat(memory): add CoPaw file-based memory system with compaction and summarization * feat(reme): add tool result cleanup and retention management * fix(memory): resolve copaw memory processing and prompt formatting issues * docs(reme_copaw): update documentation and initialization logic * refactor(reme): remove override parameters from compact_tool_result * feat(docs): update README to reflect CoPaw memory system integration * chore(docs): update model names in documentation
18 lines
402 B
Python
18 lines
402 B
Python
"""File-based memory operations."""
|
|
|
|
from .fb_cli import FbCli
|
|
from .fb_compactor import FbCompactor
|
|
from .fb_context_checker import FbContextChecker
|
|
from .fb_summarizer import FbSummarizer
|
|
from ...core.registry_factory import R
|
|
|
|
__all__ = [
|
|
"FbCli",
|
|
"FbCompactor",
|
|
"FbContextChecker",
|
|
"FbSummarizer",
|
|
]
|
|
|
|
for name in __all__:
|
|
op_class = globals()[name]
|
|
R.ops.register(op_class)
|