mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
12 lines
320 B
Python
12 lines
320 B
Python
""" Version of MemoryScope."""
|
|
import importlib.metadata
|
|
__version__ = importlib.metadata.version("memoryscope")
|
|
|
|
import fire
|
|
|
|
from memoryscope.core.config.arguments import Arguments # noqa: F401
|
|
from memoryscope.core.memoryscope import MemoryScope # noqa: F401
|
|
|
|
|
|
def cli():
|
|
fire.Fire(MemoryScope.cli_memory_chat)
|