(self, engine_dir: Path)
| 875 | return model_loader.llm_build_stats.build_steps_info |
| 876 | |
| 877 | def save(self, engine_dir: Path): |
| 878 | # copy the engine directory to the target directory |
| 879 | shutil.copytree(self.get_engine_dir(), engine_dir) |
| 880 | |
| 881 | |
| 882 | @dataclass |
nothing calls this directly
no test coverage detected