12 lines
324 B
Python
12 lines
324 B
Python
"""
|
|
Сервисы приложения Say.
|
|
|
|
WhisperService — распознавание речи (speech-to-text).
|
|
LLMService — обращение к языковой модели (text-to-response).
|
|
"""
|
|
|
|
from .whisper import WhisperService
|
|
from .llm import LLMService
|
|
|
|
__all__ = ["WhisperService", "LLMService"]
|