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