From 4469164e1e4f162de47527bf8a06e476023dfb6a Mon Sep 17 00:00:00 2001 From: Kye Date: Wed, 30 Aug 2023 10:33:49 -0400 Subject: [PATCH] updated module imports --- swarms/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/swarms/__init__.py b/swarms/__init__.py index 82b09f9e..ae28e59e 100644 --- a/swarms/__init__.py +++ b/swarms/__init__.py @@ -10,10 +10,10 @@ from swarms.workers.autobot import AutoBot from swarms.boss.boss_node import BossNode #models -from swarms.agents.models.anthropic import Anthropic -from swarms.agents.models.huggingface import HuggingFaceLLM -# from swarms.agents.models.palm import GooglePalm -from swarms.agents.models.petals import Petals -from swarms.agents.models.openai import OpenAI +from swarms.models.anthropic import Anthropic +from swarms.models.huggingface import HuggingFaceLLM +# from swarms.models.palm import GooglePalm +from swarms.models.petals import Petals +from swarms.models.openai import OpenAI