first commit
This commit is contained in:
30
agent_dhal/agentdhal_agentchat/teams/__init__.py
Normal file
30
agent_dhal/agentdhal_agentchat/teams/__init__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""
|
||||
This module provides implementation of various pre-defined multi-agent teams.
|
||||
Each team inherits from the BaseGroupChat class.
|
||||
"""
|
||||
|
||||
from ._group_chat._base_group_chat import BaseGroupChat
|
||||
from ._group_chat._graph import (
|
||||
DiGraph,
|
||||
DiGraphBuilder,
|
||||
DiGraphEdge,
|
||||
DiGraphNode,
|
||||
GraphFlow,
|
||||
)
|
||||
from ._group_chat._magentic_one import MagenticOneGroupChat
|
||||
from ._group_chat._round_robin_group_chat import RoundRobinGroupChat
|
||||
from ._group_chat._selector_group_chat import SelectorGroupChat
|
||||
from ._group_chat._swarm_group_chat import Swarm
|
||||
|
||||
__all__ = [
|
||||
"BaseGroupChat",
|
||||
"RoundRobinGroupChat",
|
||||
"SelectorGroupChat",
|
||||
"Swarm",
|
||||
"MagenticOneGroupChat",
|
||||
"DiGraphBuilder",
|
||||
"DiGraph",
|
||||
"DiGraphNode",
|
||||
"DiGraphEdge",
|
||||
"GraphFlow",
|
||||
]
|
||||
Reference in New Issue
Block a user