Spaces:
Runtime error
Runtime error
| """ | |
| AML Copilot Agents | |
| All specialized agents for AML investigation | |
| """ | |
| from .base import Agent, SimpleAgent, AgentConfig, AgentResult | |
| from .router import QueryRouterAgent | |
| from .retrieval import DataRetrievalAgent | |
| from .graph_analysis import GraphAnalysisAgent | |
| from .risk_assessment import RiskAssessmentAgent | |
| from .comparison import ComparisonAgent | |
| from .sar_generation import SARGenerationAgent | |
| from .action_executor import ActionExecutorAgent | |
| from .memory import MemoryAgent | |
| from .fact_checker import FactCheckingAgent | |
| from .escalation import EscalationAgent | |
| __all__ = [ | |
| "Agent", | |
| "SimpleAgent", | |
| "AgentConfig", | |
| "AgentResult", | |
| "QueryRouterAgent", | |
| "DataRetrievalAgent", | |
| "GraphAnalysisAgent", | |
| "RiskAssessmentAgent", | |
| "ComparisonAgent", | |
| "SARGenerationAgent", | |
| "ActionExecutorAgent", | |
| "MemoryAgent", | |
| "FactCheckingAgent", | |
| "EscalationAgent", | |
| ] | |