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