Initialize the bundle workflow before running.
(self)
| 464 | self._is_initialized: bool = False |
| 465 | |
| 466 | def initialize(self) -> Any: |
| 467 | """ |
| 468 | Initialize the bundle workflow before running. |
| 469 | |
| 470 | """ |
| 471 | # reset the "reference_resolver" buffer at initialization stage |
| 472 | self.parser.parse(reset=True) |
| 473 | self._is_initialized = True |
| 474 | return self._run_expr(id=self.init_id) |
| 475 | |
| 476 | def run(self) -> Any: |
| 477 | """ |