Smart STT Pipeline v3: T-one + GigaAM auto-routing + Qwen3.5 punctuation

This commit is contained in:
alex_z46
2026-08-04 19:38:24 +00:00
parent d5393007b7
commit 8c5035d00b
3 changed files with 189 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 8005
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8005"]