mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
17 lines
300 B
Python
17 lines
300 B
Python
import sys
|
|
|
|
sys.path.append(".") # noqa: E402
|
|
|
|
import fire
|
|
|
|
from memoryscope.core.memoryscope import MemoryScope
|
|
|
|
|
|
def cli_job(**kwargs):
|
|
with MemoryScope(**kwargs) as ms:
|
|
memory_chat = ms.default_memory_chat
|
|
memory_chat.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
fire.Fire(cli_job)
|