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