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

Method _run_impl

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

Source from the content-addressed store, hash-verified

1038 rerun_on_resume: bool = True
1039
1040 async def _run_impl(
1041 self, *, ctx: Context, node_input: Any
1042 ) -> AsyncGenerator[Any, None]:
1043 call_counts['middle'] += 1
1044 inner_out = await ctx.run_node(_Inner(name='inner'), 'go')
1045 yield f'middle({inner_out})'
1046
1047 class _Outer(BaseNode):
1048 rerun_on_resume: bool = True

Callers

nothing calls this directly

Calls 2

_InnerClass · 0.85
run_nodeMethod · 0.80

Tested by

no test coverage detected