From 1027735fe61c3d798a754a7818497cf4005f1583 Mon Sep 17 00:00:00 2001 From: CI-DEV <154627941+IlumCI@users.noreply.github.com> Date: Fri, 3 Oct 2025 19:16:27 +0300 Subject: [PATCH] Update __init__.py --- swarms/structs/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/swarms/structs/__init__.py b/swarms/structs/__init__.py index 145a736c..9a00072f 100644 --- a/swarms/structs/__init__.py +++ b/swarms/structs/__init__.py @@ -55,9 +55,9 @@ from swarms.structs.multi_agent_exec import ( run_agents_concurrently, run_agents_concurrently_async, run_agents_concurrently_multiprocess, - run_agents_concurrently_uvloop, + run_agents_concurrently_optimized, run_agents_with_different_tasks, - run_agents_with_tasks_uvloop, + run_agents_with_tasks_optimized, run_single_agent, ) from swarms.structs.multi_agent_router import MultiAgentRouter @@ -101,6 +101,7 @@ from swarms.structs.swarming_architectures import ( staircase_swarm, star_swarm, ) +from swarms.structs.aop import AOP __all__ = [ "Agent", @@ -146,9 +147,9 @@ __all__ = [ "run_agents_concurrently", "run_agents_concurrently_async", "run_agents_concurrently_multiprocess", - "run_agents_concurrently_uvloop", + "run_agents_concurrently_optimized", "run_agents_with_different_tasks", - "run_agents_with_tasks_uvloop", + "run_agents_with_tasks_optimized", "run_single_agent", "GroupChat", "expertise_based",