ReMe/memoryscope/__init__.py
2024-08-01 19:45:59 +08:00

11 lines
262 B
Python

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