From b7d206a02309fb27e416b19201ffc14dcc9197f3 Mon Sep 17 00:00:00 2001 From: Francisco Beltrao Date: Fri, 29 May 2026 12:26:03 +0200 Subject: [PATCH] Update workflow Python sample references in documentation The Python workflow sample link points to an non-existent file. --- agent-framework/get-started/workflows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent-framework/get-started/workflows.md b/agent-framework/get-started/workflows.md index c0dfded9..357bd343 100644 --- a/agent-framework/get-started/workflows.md +++ b/agent-framework/get-started/workflows.md @@ -65,10 +65,10 @@ Define workflow steps (executors) and connect them with edges: Build and run the workflow: -:::code language="python" source="~/../agent-framework-code/python/samples/01-get-started/05_first_workflow.py" id="run_workflow" highlight="3"::: +:::code language="python" source="~/../agent-framework-code/python/samples/01-get-started/06_functional_workflow_basics.py" id="run_workflow" highlight="3"::: > [!TIP] -> See the [full sample](https://github.com/microsoft/agent-framework/blob/main/python/samples/01-get-started/05_first_workflow.py) for the complete runnable file. +> See the [full sample](https://github.com/microsoft/agent-framework/blob/main/python/samples/01-get-started/06_functional_workflow_basics.py) for the complete runnable file. :::zone-end