chore: regenerate examples (#2145)

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
github-actions[bot]
2025-08-14 18:58:22 -05:00
committed by GitHub
parent e2554e289c
commit 3f660ad761
17 changed files with 1 additions and 2316 deletions

View File

@@ -35,7 +35,7 @@ async def step3(input: EmptyModel, ctx: Context) -> RandomSum:
one = ctx.task_output(step1).random_number
two = ctx.task_output(step2).random_number
return RandomSum(sum=one + two + 3)
return RandomSum(sum=one + two)
@dag_workflow.task(parents=[step1, step3])