import argparse def cli(): parser = argparse.ArgumentParser() parser.add_argument("--config_path", type=str, default="config.toml", help="Specify config file path.") return parser.parse_args()