From 8af6d905f5959611f66fc29950741563fdbab332 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Sun, 31 Dec 2023 16:38:20 -0700 Subject: [PATCH] structs base.py init --- swarms/structs/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/swarms/structs/__init__.py b/swarms/structs/__init__.py index 9253a3a0..114bedce 100644 --- a/swarms/structs/__init__.py +++ b/swarms/structs/__init__.py @@ -1,3 +1,4 @@ +""" This module lists all the data structures used in the swarms package.""" from swarms.structs.agent import Agent from swarms.structs.autoscaler import AutoScaler from swarms.structs.base_swarm import AbstractSwarm @@ -49,4 +50,5 @@ __all__ = [ "ConcurrentWorkflow", "RecursiveWorkflow", "NonlinearWorkflow", + "BaseStruct", # from swarms/structs/base.py ]