diff --git a/rag/agents/__init__.py b/rag/agents/__init__.py new file mode 100644 index 0000000..4b8bece --- /dev/null +++ b/rag/agents/__init__.py @@ -0,0 +1,15 @@ +# rag/agents/__init__.py +""" +Многоагентный модуль для координации специализированных агентов. +""" + +from .coordinator import AgentCoordinator +from .roles import BaseAgent, MethodologistAgent, BoxSolutionAgent, PersonalAssistantAgent + +__all__ = [ + "AgentCoordinator", + "BaseAgent", + "MethodologistAgent", + "BoxSolutionAgent", + "PersonalAssistantAgent", +] \ No newline at end of file