(stage: str, step: int, total: int)
| 290 | _write_progress_file(session_id, {"stage": "Initializing...", "step": 0, "total": 0, "done": False}) |
| 291 | |
| 292 | def _update_progress(stage: str, step: int, total: int): |
| 293 | session_id = getattr(_thread_local, 'active_session', '') |
| 294 | if session_id: |
| 295 | _write_progress_file(session_id, {"stage": stage, "step": step, "total": total, "done": False}) |
| 296 | |
| 297 | def _finish_progress(): |
| 298 | session_id = getattr(_thread_local, 'active_session', '') |
no test coverage detected