MCPcopy Index your code
hub / github.com/google/adk-python / _run_impl

Method _run_impl

tests/unittests/runners/test_runner_node.py:1028–1035  ·  view source on GitHub ↗
(
        self, *, ctx: Context, node_input: Any
    )

Source from the content-addressed store, hash-verified

1026 rerun_on_resume: bool = True
1027
1028 async def _run_impl(
1029 self, *, ctx: Context, node_input: Any
1030 ) -> AsyncGenerator[Any, None]:
1031 call_counts['inner'] += 1
1032 if ctx.resume_inputs and 'fc-1' in ctx.resume_inputs:
1033 yield f'inner_resumed:{ctx.resume_inputs["fc-1"]["v"]}'
1034 return
1035 yield _make_interrupt_event(fc_name='ask', fc_id='fc-1')
1036
1037 class _Middle(BaseNode):
1038 rerun_on_resume: bool = True

Callers

nothing calls this directly

Calls 1

_make_interrupt_eventFunction · 0.85

Tested by

no test coverage detected