File size: 440 Bytes
9e0d3ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Multi-agent orchestration for equity analysis
Uses CrewAI for Option A, designed to easily swap to LangGraph for Option B
"""

from .orchestrator import EquityAnalysisOrchestrator
from .sec_agent import SECFilingAgent
from .market_agent import MarketIntelligenceAgent
from .synthesis_agent import SynthesisAgent

__all__ = [
    "EquityAnalysisOrchestrator",
    "SECFilingAgent",
    "MarketIntelligenceAgent",
    "SynthesisAgent",
]