From 65301aff0a3769ec35faa55570c4086e83d1e4a0 Mon Sep 17 00:00:00 2001 From: Markov Andrey Date: Tue, 30 Jun 2026 20:51:02 +0000 Subject: [PATCH] Add new file --- rag/agents/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rag/agents/__init__.py 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