diff --git a/docs/swarms/examples/multi_agent_router_minimal.md b/docs/swarms/examples/multi_agent_router_minimal.md index 5e283ec3..17ad8bc3 100644 --- a/docs/swarms/examples/multi_agent_router_minimal.md +++ b/docs/swarms/examples/multi_agent_router_minimal.md @@ -21,7 +21,6 @@ agents = [ router = MultiAgentRouter(agents=agents) result = router.route_task("Write a function that adds two numbers") -print("Chosen agent:", result["boss_decision"]["selected_agent"]) ``` View the source on [GitHub](https://github.com/kyegomez/swarms/blob/master/examples/multi_agent/mar/multi_agent_router_minimal.py). diff --git a/examples/multi_agent/mar/multi_agent_router_minimal.py b/examples/multi_agent/mar/multi_agent_router_minimal.py index 7020d0c3..2930c175 100644 --- a/examples/multi_agent/mar/multi_agent_router_minimal.py +++ b/examples/multi_agent/mar/multi_agent_router_minimal.py @@ -17,4 +17,3 @@ if __name__ == "__main__": router = MultiAgentRouter(agents=agents) result = router.route_task("Write a function that adds two numbers") - print("Chosen agent:", result["boss_decision"]["selected_agent"])