mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
13 lines
212 B
Python
13 lines
212 B
Python
import fire
|
|
|
|
from memory_scope.job import Job
|
|
|
|
|
|
def main(config_path: str):
|
|
job = Job(config_path=config_path)
|
|
job.init_instance_by_config()
|
|
job.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
fire.Fire(main)
|