(pct: int, step: str = "")
| 164 | gen.outputs_dir.mkdir(parents=True, exist_ok=True) |
| 165 | |
| 166 | def progress_cb(pct: int, step: str = "") -> None: |
| 167 | send({"type": "progress", "id": rid, "pct": pct, "step": step}) |
| 168 | |
| 169 | try: |
| 170 | output_path = gen.generate(image_bytes, params, progress_cb, cancel_evt) |