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) ``` ---