From b9a9a5b30c1c194f78dfa924e66a13178355eae1 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Tue, 22 Jul 2025 10:15:40 -0700 Subject: [PATCH] fix readme example --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 582cba8b..9fc90d6f 100644 --- a/README.md +++ b/README.md @@ -303,9 +303,7 @@ results = concurrent_workflow.run( "Analyze the potential impact of AI technology on the healthcare industry" ) -# Each agent's output is available in the results -for agent_name, output in results.items(): - print(f"{agent_name}: {output}") +print(results) ``` ---