mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
11 lines
199 B
Python
11 lines
199 B
Python
from memory_scope.cli import CliJob
|
|
|
|
|
|
def main(config_path: str):
|
|
job = CliJob()
|
|
job.run(config=config_path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# fire.Fire(main)
|
|
main("config/config.yaml")
|