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
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
# Зависимости
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Код
COPY . .
# Порт
EXPOSE 5000
# Запуск через gunicorn (production) или flask (dev)
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "90", "app:application"]