(*, ctx, node_input)
| 119 | |
| 120 | @node(rerun_on_resume=True) |
| 121 | async def parent(*, ctx, node_input): |
| 122 | result = await ctx.run_node(child, node_input='hello') |
| 123 | yield f'parent got: {result}' |
| 124 | |
| 125 | wf = Workflow(name='wf', edges=[(START, parent)]) |
| 126 | ss = InMemorySessionService() |