Files
encoach_backend/app/services/abc/third_parties/__init__.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

14 lines
338 B
Python

from .stt import ISpeechToTextService
from .tts import ITextToSpeechService
from .llm import ILLMService
from .vid_gen import IVideoGeneratorService
from .ai_detector import IAIDetectorService
__all__ = [
"ISpeechToTextService",
"ITextToSpeechService",
"ILLMService",
"IVideoGeneratorService",
"IAIDetectorService"
]