|
8 | 8 | import yaml
|
9 | 9 | from autogen_agentchat.agents import AssistantAgent, UserProxyAgent
|
10 | 10 | from autogen_agentchat.conditions import MaxMessageTermination, StopMessageTermination, TextMentionTermination
|
11 |
| -from autogen_agentchat.teams import RoundRobinGroupChat, SelectorGroupChat |
| 11 | +from autogen_agentchat.teams import RoundRobinGroupChat, SelectorGroupChat, MagenticOneGroupChat |
12 | 12 | from autogen_core.components.tools import FunctionTool
|
13 | 13 | from autogen_ext.agents.web_surfer import MultimodalWebSurfer
|
| 14 | +from autogen_ext.agents.file_surfer import FileSurfer |
| 15 | +from autogen_ext.agents.magentic_one import MagenticOneCoderAgent |
14 | 16 | from autogen_ext.models import OpenAIChatCompletionClient
|
15 | 17 |
|
16 | 18 | from ..datamodel.types import (
|
|
32 | 34 |
|
33 | 35 | logger = logging.getLogger(__name__)
|
34 | 36 |
|
35 |
| -TeamComponent = Union[RoundRobinGroupChat, SelectorGroupChat] |
36 |
| -AgentComponent = Union[AssistantAgent, MultimodalWebSurfer] |
| 37 | +TeamComponent = Union[RoundRobinGroupChat, SelectorGroupChat, MagenticOneGroupChat] |
| 38 | +AgentComponent = Union[AssistantAgent, MultimodalWebSurfer, UserProxyAgent, FileSurfer, MagenticOneCoderAgent] |
37 | 39 | ModelComponent = Union[OpenAIChatCompletionClient]
|
38 | 40 | ToolComponent = Union[FunctionTool] # Will grow with more tool types
|
39 | 41 | TerminationComponent = Union[MaxMessageTermination, StopMessageTermination, TextMentionTermination]
|
@@ -243,6 +245,15 @@ async def load_team(self, config: TeamConfig, input_func: Optional[Callable] = N
|
243 | 245 | termination_condition=termination,
|
244 | 246 | selector_prompt=selector_prompt,
|
245 | 247 | )
|
| 248 | + elif config.team_type == TeamTypes.MAGENTIC_ONE: |
| 249 | + if not model_client: |
| 250 | + raise ValueError("MagenticOneGroupChat requires a model_client") |
| 251 | + return MagenticOneGroupChat( |
| 252 | + participants=participants, |
| 253 | + model_client=model_client, |
| 254 | + termination_condition=termination if termination is not None else None, |
| 255 | + max_turns=config.max_turns if config.max_turns is not None else 20, |
| 256 | + ) |
246 | 257 | else:
|
247 | 258 | raise ValueError(f"Unsupported team type: {config.team_type}")
|
248 | 259 |
|
@@ -292,7 +303,16 @@ async def load_agent(self, config: AgentConfig, input_func: Optional[Callable] =
|
292 | 303 | use_ocr=config.use_ocr if config.use_ocr is not None else False,
|
293 | 304 | animate_actions=config.animate_actions if config.animate_actions is not None else False,
|
294 | 305 | )
|
295 |
| - |
| 306 | + elif config.agent_type == AgentTypes.FILE_SURFER: |
| 307 | + return FileSurfer( |
| 308 | + name=config.name, |
| 309 | + model_client=model_client, |
| 310 | + ) |
| 311 | + elif config.agent_type == AgentTypes.MAGENTIC_ONE_CODER: |
| 312 | + return MagenticOneCoderAgent( |
| 313 | + name=config.name, |
| 314 | + model_client=model_client, |
| 315 | + ) |
296 | 316 | else:
|
297 | 317 | raise ValueError(f"Unsupported agent type: {config.agent_type}")
|
298 | 318 |
|
|
0 commit comments