From 50206fb7b63fb2762fe199ec557a64e35c92c2bd Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 6 Oct 2023 12:38:54 -0400 Subject: [PATCH] abstract agent Former-commit-id: faa1ed10f1eedafef43659bbb1bfc2c97d761e5c --- swarms/agents/__init__.py | 5 +++-- swarms/swarms/groupchat.py | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/swarms/agents/__init__.py b/swarms/agents/__init__.py index 06a5104d..d23eb15c 100644 --- a/swarms/agents/__init__.py +++ b/swarms/agents/__init__.py @@ -3,7 +3,7 @@ #agents # from swarms.agents.profitpilot import ProfitPilot -from swarms.agents.aot import AoTAgent +# from swarms.agents.aot import AoTAgent # from swarms.agents.multi_modal_visual_agent import MultiModalAgent from swarms.agents.omni_modal_agent import OmniModalAgent @@ -11,4 +11,5 @@ from swarms.agents.omni_modal_agent import OmniModalAgent #utils from swarms.agents.message import Message -from swarms.agents.stream_response import stream \ No newline at end of file +from swarms.agents.stream_response import stream +from swarms.agents.base import AbstractAgent \ No newline at end of file diff --git a/swarms/swarms/groupchat.py b/swarms/swarms/groupchat.py index e0085d06..6c26c0c3 100644 --- a/swarms/swarms/groupchat.py +++ b/swarms/swarms/groupchat.py @@ -4,7 +4,6 @@ from typing import Dict, List, Optional, Union from swarms.agents.base import AbstractAgent - @dataclass class GroupChat: """A group chat with multiple participants with a list of agents and a max number of rounds"""