ReMe/memoryscope/__init__.py
2024-09-11 17:58:38 +08:00

10 lines
261 B
Python

""" Version of MemoryScope."""
__version__ = "0.1.1.0"
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)