fix: структура под платформу — код в site/, requirements.txt в корне

This commit is contained in:
2026-06-01 05:17:20 +03:00
parent 9205492d01
commit 465bb37ea2
13 changed files with 0 additions and 16 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"]