From 72cd7fa002962b75049c577b7af2280499602333 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Wed, 24 Sep 2025 11:24:43 -0700 Subject: [PATCH] delete copy types file for returntype --- swarms/types.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 swarms/types.py 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" -]