mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
10 lines
261 B
Python
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)
|