(
self, *, ctx: Context, node_input: Any
)
| 603 | class _InterruptNode(BaseNode): |
| 604 | |
| 605 | async def _run_impl( |
| 606 | self, *, ctx: Context, node_input: Any |
| 607 | ) -> AsyncGenerator[Any, None]: |
| 608 | call_count[0] += 1 |
| 609 | fc_id = f'fc-{call_count[0]}' |
| 610 | yield _make_interrupt_event(fc_name='tool', fc_id=fc_id) |
| 611 | |
| 612 | wf = Workflow( |
| 613 | name='wf', |
nothing calls this directly
no test coverage detected