| """ | |
| AI Engine module for speech pathology diagnosis. | |
| This module contains the core AI/ML components for analyzing speech: | |
| - Model loading and management | |
| - Feature extraction | |
| - Stuttering and articulation detection | |
| """ | |
| from .model_loader import get_stutter_detector | |
| __all__ = ["get_stutter_detector"] | |