File size: 615 Bytes
f844f16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""
Multi-Agent System Components
This package contains the specialized agents for the LangGraph-based system:
- LeadAgent: Orchestrates workflow and decision making
- ResearchAgent: Information gathering and research tasks
- CodeAgent: Computational and code execution tasks
- AnswerFormatter: Final answer formatting according to GAIA requirements
"""
from .lead_agent import lead_agent
from .research_agent import research_agent
from .code_agent import code_agent
from .answer_formatter import answer_formatter
__all__ = [
"lead_agent",
"research_agent",
"code_agent",
"answer_formatter"
] |