diff --git a/swarms/types.py b/swarms/types.py deleted file mode 100644 index e0c04e3b..00000000 --- a/swarms/types.py +++ /dev/null @@ -1,13 +0,0 @@ -""" -Type definitions for the swarms package. - -This module contains common type definitions used across the swarms package -to avoid circular import issues. -""" - -from typing import Literal - -# Return types for agent creation functions -ReturnTypes = Literal[ - "auto", "swarm", "agents", "both", "tasks", "run_swarm" -]