Start progress tracking.
(self, total_chunks: int)
| 176 | build_logs: List[Dict[str, Any]] = field(default_factory=list) |
| 177 | |
| 178 | def start(self, total_chunks: int) -> None: |
| 179 | """Start progress tracking.""" |
| 180 | self.total_chunks = total_chunks |
| 181 | self.processed_chunks = 0 |
| 182 | self.successful_builds = 0 |
| 183 | self.failed_builds = 0 |
| 184 | self.total_memories_created = 0 |
| 185 | self.start_time = time.time() |
| 186 | self.chunk_timings = [] |
| 187 | self.build_logs = [] |
| 188 | |
| 189 | def record_chunk( |
| 190 | self, |
no outgoing calls
no test coverage detected