From d8fb6f8df4484c99658de4dd9d9c732f90d2ba51 Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 30 Nov 2023 19:20:52 -0800 Subject: [PATCH] [AbstractLLM] --- swarms/models/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/models/__init__.py b/swarms/models/__init__.py index eeccc4a1..5b759fb7 100644 --- a/swarms/models/__init__.py +++ b/swarms/models/__init__.py @@ -1,5 +1,5 @@ # LLMs -from swarms.models.base import AbstractLLM # noqa: E402 +from swarms.models.base_llm import AbstractLLM # noqa: E402 from swarms.models.anthropic import Anthropic # noqa: E402 from swarms.models.petals import Petals # noqa: E402 from swarms.models.mistral import Mistral # noqa: E402