diff --git a/swarms/structs/__init__.py b/swarms/structs/__init__.py index fc05d99c..dbff25d1 100644 --- a/swarms/structs/__init__.py +++ b/swarms/structs/__init__.py @@ -2,6 +2,7 @@ from swarms.structs.agent import Agent from swarms.structs.agent_builder import AgentsBuilder from swarms.structs.agent_loader import AgentLoader from swarms.structs.agent_rearrange import AgentRearrange, rearrange +from swarms.structs.election_swarm import ElectionSwarm from swarms.structs.auto_swarm_builder import AutoSwarmBuilder from swarms.structs.base_structure import BaseStructure from swarms.structs.base_swarm import BaseSwarm @@ -186,4 +187,5 @@ __all__ = [ "check_end", "AgentLoader", "BatchedGridWorkflow", + "ElectionSwarm", ]