tostido's picture
Add blueprints archive: ARACHNE-001, MARIONETTE-001, AIRFOIL-CORDAGE-SYSTEM, PERSPECTIVE
26fa66a
raw
history blame contribute delete
615 Bytes
"""
AI Module
=========
Artificial intelligence controllers for the KAPS system.
- DefensiveMatrixAI: 360° threat detection and intercept
- FormationController: Cross-formation maintenance
"""
from .defensive_matrix import (
DefensiveMatrixAI,
DefenseConfig,
TrackedThreat,
ThreatType,
ThreatPriority
)
from .formation_ctrl import (
FormationController,
FormationConfig,
FormationMode
)
__all__ = [
'DefensiveMatrixAI',
'DefenseConfig',
'TrackedThreat',
'ThreatType',
'ThreatPriority',
'FormationController',
'FormationConfig',
'FormationMode'
]