IncidentMgmtSystem / agents /__init__.py
Debashis
Add multi-agent architecture implementation with detailed documentation
ffa310a
raw
history blame contribute delete
764 Bytes
"""
Multi-Agent System for Incident Management
This module implements a distributed agent architecture where specialized agents
collaborate to detect, correlate, analyze, and respond to infrastructure incidents.
Agent Types:
1. AlertIngestionAgent - Normalizes and dedups raw alerts
2. CorrelationAgent - Groups related alerts into incidents
3. AnalysisAgent - Performs AI-powered root cause analysis
4. ResponseAgent - Generates actionable recommendations
"""
from .alert_agent import AlertIngestionAgent
from .correlation_agent import CorrelationAgent
from .analysis_agent import AnalysisAgent
from .response_agent import ResponseAgent
__all__ = [
"AlertIngestionAgent",
"CorrelationAgent",
"AnalysisAgent",
"ResponseAgent"
]