Say v1.0.0: голосовой ассистент Whisper + 3 LLM

This commit is contained in:
2026-05-31 15:39:33 +03:00
commit a321541578
15 changed files with 1072 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""
Сервисы приложения Say.
WhisperService — распознавание речи (speech-to-text).
LLMService — обращение к языковой модели (text-to-response).
"""
from .whisper import WhisperService
from .llm import LLMService
__all__ = ["WhisperService", "LLMService"]