14 lines
400 B
Python
14 lines
400 B
Python
"""
|
|
Многоагентный модуль для координации специализированных агентов.
|
|
"""
|
|
|
|
from .coordinator import AgentCoordinator
|
|
from .roles import BaseAgent, MethodologistAgent, BoxSolutionAgent, PersonalAssistantAgent
|
|
|
|
__all__ = [
|
|
"AgentCoordinator",
|
|
"BaseAgent",
|
|
"MethodologistAgent",
|
|
"BoxSolutionAgent",
|
|
"PersonalAssistantAgent",
|
|
] |