mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-15 23:31:05 +00:00
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)
|