Add new file
This commit is contained in:
15
rag/agents/__init__.py
Normal file
15
rag/agents/__init__.py
Normal file
@@ -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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user