2025-06-30 07:58:13 +02:00

14 lines
464 B
Python

"""Agent definitions for the multi-agent sysadmin system."""
from .os_detector import create_os_detector_worker
from .logs_analyzer import create_logs_analyzer_worker
from .performance_analyzer import create_performance_analyzer_worker
from .service_discovery import create_service_discovery_worker
__all__ = [
"create_os_detector_worker",
"create_logs_analyzer_worker",
"create_performance_analyzer_worker",
"create_service_discovery_worker"
]