anfastech's picture
Feat: project structure and configuration
79f7931
raw
history blame contribute delete
304 Bytes
"""
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"]