-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLEANUP: swarms.agents, removed unused files
Former-commit-id: 07bcd22
- Loading branch information
Kye
committed
Nov 11, 2023
1 parent
bf9a747
commit 4e2ce70
Showing
35 changed files
with
108 additions
and
3,976 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
# from swarms.agents.omni_modal_agent import OmniModalAgent | ||
from swarms.agents.hf_agents import HFAgent | ||
from swarms.agents.message import Message | ||
|
||
# from swarms.agents.stream_response import stream | ||
from swarms.agents.base import AbstractAgent | ||
from swarms.agents.registry import Registry | ||
|
||
# from swarms.agents.idea_to_image_agent import Idea2Image | ||
from swarms.agents.simple_agent import SimpleAgent | ||
|
||
"""Agent Infrastructure, models, memory, utils, tools""" | ||
|
||
__all__ = [ | ||
# "OmniModalAgent", | ||
"HFAgent", | ||
"Message", | ||
"AbstractAgent", | ||
"Registry", | ||
# "Idea2Image", | ||
"SimpleAgent", | ||
] |
Oops, something went wrong.