ReMe/memoryscope/__init__.py
jinli.yl 09f854c3b7 * update readme and other description
* add info before cli readme
2024-09-09 10:31:29 +08:00

10 lines
262 B
Python

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