From 2be914e866ab204ec0442f581ebc659ed7ba09f0 Mon Sep 17 00:00:00 2001 From: rholinshead <5060851+rholinshead@users.noreply.github.com> Date: Thu, 11 Sep 2025 18:39:28 -0400 Subject: [PATCH] Update docstring --- examples/temporal/orchestrator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/temporal/orchestrator.py b/examples/temporal/orchestrator.py index 810c201ea..645ae6e2b 100644 --- a/examples/temporal/orchestrator.py +++ b/examples/temporal/orchestrator.py @@ -25,13 +25,12 @@ @app.async_tool(name="OrchestratorWorkflow") -async def run_orchestrator(input: str, app_ctx: Optional[AppContext]) -> str: +async def run_orchestrator(input: str, app_ctx: Optional[AppContext] = None) -> str: """ Run the workflow, processing the input data. Args: input: Task description or instruction text. - app_ctx: Optional application context for the workflow. Returns: A WorkflowResult containing the processed data