File size: 381 Bytes
5009cb8
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Domain interfaces package."""

from .speech_recognition import ISpeechRecognitionService
from .translation import ITranslationService
from .speech_synthesis import ISpeechSynthesisService
from .audio_processing import IAudioProcessingService

__all__ = [
    'ISpeechRecognitionService',
    'ITranslationService', 
    'ISpeechSynthesisService',
    'IAudioProcessingService'
]