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