22 lines
459 B
Python
22 lines
459 B
Python
"""
|
|
混合 Agent 架构
|
|
包含 Orchestrator、Recon、Analysis 和 Verification Agent
|
|
"""
|
|
|
|
from .base import BaseAgent, AgentConfig, AgentResult
|
|
from .orchestrator import OrchestratorAgent
|
|
from .recon import ReconAgent
|
|
from .analysis import AnalysisAgent
|
|
from .verification import VerificationAgent
|
|
|
|
__all__ = [
|
|
"BaseAgent",
|
|
"AgentConfig",
|
|
"AgentResult",
|
|
"OrchestratorAgent",
|
|
"ReconAgent",
|
|
"AnalysisAgent",
|
|
"VerificationAgent",
|
|
]
|
|
|