(builder_config: BuilderConfig, config_path: str)
| 445 | |
| 446 | @staticmethod |
| 447 | def save_config(builder_config: BuilderConfig, config_path: str): |
| 448 | config = builder_config.to_dict() |
| 449 | to_json_file(config, config_path) |
| 450 | logger.info(f'Config saved to {config_path}.') |
| 451 | |
| 452 | |
| 453 | class BuildConfig(BaseModel): |