Spaces:
Sleeping
Sleeping
Peter Michael Gits Claude commited on
Commit ·
69f7704
1
Parent(s): 542bc07
feat: Add standalone WebSocket-only STT service v1.0.0
Browse files- WebSocket-only interface at /ws/stt
- ZeroGPU Whisper integration
- FastAPI-based architecture
- No Gradio/MCP dependencies
- Standalone deployment ready
- Port 7860 (HuggingFace Spaces standard)
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Dockerfile-websocket +39 -0
- README-websocket.md +124 -0
- requirements-websocket.txt +11 -0
- version.py +31 -0
- websocket_stt_server.py +334 -0
Dockerfile-websocket
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Minimal Dockerfile for WebSocket-only STT service
|
| 2 |
+
FROM python:3.11-slim
|
| 3 |
+
|
| 4 |
+
# Set working directory
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
|
| 7 |
+
# Install minimal system packages
|
| 8 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 9 |
+
curl \
|
| 10 |
+
ffmpeg \
|
| 11 |
+
&& rm -rf /var/lib/apt/lists/* \
|
| 12 |
+
&& apt-get clean
|
| 13 |
+
|
| 14 |
+
# Create non-root user
|
| 15 |
+
RUN useradd -m -u 1000 user
|
| 16 |
+
|
| 17 |
+
# Switch to user
|
| 18 |
+
USER user
|
| 19 |
+
ENV HOME=/home/user \
|
| 20 |
+
PATH=/home/user/.local/bin:$PATH
|
| 21 |
+
|
| 22 |
+
WORKDIR $HOME/app
|
| 23 |
+
|
| 24 |
+
# Copy and install minimal requirements
|
| 25 |
+
COPY --chown=user requirements-websocket.txt .
|
| 26 |
+
RUN pip install --user --no-cache-dir -r requirements-websocket.txt
|
| 27 |
+
|
| 28 |
+
# Copy WebSocket server
|
| 29 |
+
COPY --chown=user websocket_stt_server.py .
|
| 30 |
+
|
| 31 |
+
# Expose port
|
| 32 |
+
EXPOSE 7860
|
| 33 |
+
|
| 34 |
+
# Environment variables
|
| 35 |
+
ENV GRADIO_SERVER_NAME="0.0.0.0" \
|
| 36 |
+
GRADIO_SERVER_PORT=7860
|
| 37 |
+
|
| 38 |
+
# Run WebSocket-only STT service
|
| 39 |
+
CMD ["python3", "websocket_stt_server.py"]
|
README-websocket.md
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# STT WebSocket Service v1.0.0
|
| 2 |
+
|
| 3 |
+
Standalone WebSocket-only Speech-to-Text service for VoiceCal integration.
|
| 4 |
+
|
| 5 |
+
## Features
|
| 6 |
+
|
| 7 |
+
- ✅ WebSocket-only STT interface (`/ws/stt`)
|
| 8 |
+
- ✅ ZeroGPU Whisper integration
|
| 9 |
+
- ✅ FastAPI-based architecture
|
| 10 |
+
- ✅ No Gradio dependencies
|
| 11 |
+
- ✅ No MCP dependencies
|
| 12 |
+
- ✅ Standalone deployment ready
|
| 13 |
+
- ✅ Real-time audio transcription
|
| 14 |
+
- ✅ Base64 audio transmission
|
| 15 |
+
- ✅ Multiple Whisper model sizes
|
| 16 |
+
|
| 17 |
+
## Quick Start
|
| 18 |
+
|
| 19 |
+
### Using the WebSocket Server
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
# Install dependencies
|
| 23 |
+
pip install -r requirements-websocket.txt
|
| 24 |
+
|
| 25 |
+
# Run standalone WebSocket server
|
| 26 |
+
python3 websocket_stt_server.py
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
### Docker Deployment
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
# Build WebSocket-only image
|
| 33 |
+
docker build -f Dockerfile-websocket -t stt-websocket-service .
|
| 34 |
+
|
| 35 |
+
# Run container
|
| 36 |
+
docker run -p 7860:7860 stt-websocket-service
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## API Endpoints
|
| 40 |
+
|
| 41 |
+
### WebSocket: `/ws/stt`
|
| 42 |
+
|
| 43 |
+
**Connection Confirmation:**
|
| 44 |
+
```json
|
| 45 |
+
{
|
| 46 |
+
"type": "stt_connection_confirmed",
|
| 47 |
+
"client_id": "uuid",
|
| 48 |
+
"service": "STT WebSocket Service",
|
| 49 |
+
"version": "1.0.0",
|
| 50 |
+
"model": "whisper-base",
|
| 51 |
+
"device": "cuda",
|
| 52 |
+
"message": "STT WebSocket connected and ready"
|
| 53 |
+
}
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
**Send Audio for Transcription:**
|
| 57 |
+
```json
|
| 58 |
+
{
|
| 59 |
+
"type": "stt_audio_chunk",
|
| 60 |
+
"audio_data": "base64_encoded_webm_audio",
|
| 61 |
+
"language": "auto",
|
| 62 |
+
"model_size": "base"
|
| 63 |
+
}
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
**Transcription Result:**
|
| 67 |
+
```json
|
| 68 |
+
{
|
| 69 |
+
"type": "stt_transcription_complete",
|
| 70 |
+
"client_id": "uuid",
|
| 71 |
+
"transcription": "Hello world",
|
| 72 |
+
"timing": {
|
| 73 |
+
"processing_time": 1.23,
|
| 74 |
+
"model_size": "base",
|
| 75 |
+
"device": "cuda"
|
| 76 |
+
},
|
| 77 |
+
"status": "success"
|
| 78 |
+
}
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
### HTTP: `/health`
|
| 82 |
+
|
| 83 |
+
```json
|
| 84 |
+
{
|
| 85 |
+
"service": "STT WebSocket Service",
|
| 86 |
+
"version": "1.0.0",
|
| 87 |
+
"status": "healthy",
|
| 88 |
+
"model_loaded": true,
|
| 89 |
+
"active_connections": 2,
|
| 90 |
+
"device": "cuda"
|
| 91 |
+
}
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
## Port Configuration
|
| 95 |
+
|
| 96 |
+
- **Default Port**: `7860`
|
| 97 |
+
- **WebSocket Endpoint**: `ws://localhost:7860/ws/stt`
|
| 98 |
+
- **Health Check**: `http://localhost:7860/health`
|
| 99 |
+
|
| 100 |
+
## Architecture
|
| 101 |
+
|
| 102 |
+
This service eliminates all unnecessary dependencies:
|
| 103 |
+
- **Removed**: Gradio web interface
|
| 104 |
+
- **Removed**: MCP protocol support
|
| 105 |
+
- **Removed**: Complex routing
|
| 106 |
+
- **Added**: Direct FastAPI WebSocket endpoints
|
| 107 |
+
- **Added**: Simplified audio processing
|
| 108 |
+
- **Added**: ZeroGPU optimized transcription
|
| 109 |
+
|
| 110 |
+
## Integration
|
| 111 |
+
|
| 112 |
+
Connect from VoiceCal WebRTC interface:
|
| 113 |
+
|
| 114 |
+
```javascript
|
| 115 |
+
const ws = new WebSocket('ws://localhost:7860/ws/stt');
|
| 116 |
+
|
| 117 |
+
// Send audio data
|
| 118 |
+
ws.send(JSON.stringify({
|
| 119 |
+
type: "stt_audio_chunk",
|
| 120 |
+
audio_data: base64AudioData,
|
| 121 |
+
language: "auto",
|
| 122 |
+
model_size: "base"
|
| 123 |
+
}));
|
| 124 |
+
```
|
requirements-websocket.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Minimal requirements for WebSocket-only STT service
|
| 2 |
+
torch>=2.1.0
|
| 3 |
+
torchaudio>=2.1.0
|
| 4 |
+
transformers>=4.35.0
|
| 5 |
+
accelerate>=0.24.0
|
| 6 |
+
spaces>=0.19.0
|
| 7 |
+
numpy>=1.21.0
|
| 8 |
+
soundfile>=0.12.0
|
| 9 |
+
fastapi>=0.104.0
|
| 10 |
+
uvicorn>=0.24.0
|
| 11 |
+
python-multipart>=0.0.6
|
version.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Version information for STT WebSocket Service
|
| 4 |
+
Major version 1.0.0 - Standalone WebSocket-only service
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
__version__ = "1.0.0"
|
| 8 |
+
__build_date__ = "2025-08-25T04:30:00"
|
| 9 |
+
__service__ = "STT WebSocket Service"
|
| 10 |
+
__description__ = "Standalone WebSocket-only Speech-to-Text service without Gradio or MCP dependencies"
|
| 11 |
+
|
| 12 |
+
def get_version_info():
|
| 13 |
+
"""Get complete version information"""
|
| 14 |
+
return {
|
| 15 |
+
"version": __version__,
|
| 16 |
+
"service": __service__,
|
| 17 |
+
"description": __description__,
|
| 18 |
+
"build_date": __build_date__,
|
| 19 |
+
"major_features": [
|
| 20 |
+
"WebSocket-only STT interface",
|
| 21 |
+
"ZeroGPU Whisper integration",
|
| 22 |
+
"FastAPI-based architecture",
|
| 23 |
+
"No Gradio dependencies",
|
| 24 |
+
"No MCP dependencies",
|
| 25 |
+
"Standalone deployment ready"
|
| 26 |
+
]
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
if __name__ == "__main__":
|
| 30 |
+
import json
|
| 31 |
+
print(json.dumps(get_version_info(), indent=2))
|
websocket_stt_server.py
ADDED
|
@@ -0,0 +1,334 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Standalone WebSocket-only STT Service
|
| 4 |
+
Simplified service without Gradio, MCP, or web interfaces
|
| 5 |
+
Following unmute.sh WebRTC pattern for HuggingFace Spaces
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import asyncio
|
| 9 |
+
import json
|
| 10 |
+
import uuid
|
| 11 |
+
import base64
|
| 12 |
+
import tempfile
|
| 13 |
+
import os
|
| 14 |
+
import logging
|
| 15 |
+
from datetime import datetime
|
| 16 |
+
from typing import Optional, Dict, Any
|
| 17 |
+
import torch
|
| 18 |
+
from transformers import WhisperProcessor, WhisperForConditionalGeneration
|
| 19 |
+
import torchaudio
|
| 20 |
+
import soundfile as sf
|
| 21 |
+
import numpy as np
|
| 22 |
+
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
|
| 23 |
+
from fastapi.middleware.cors import CORSMiddleware
|
| 24 |
+
import spaces
|
| 25 |
+
import uvicorn
|
| 26 |
+
|
| 27 |
+
# Configure logging
|
| 28 |
+
logging.basicConfig(level=logging.INFO)
|
| 29 |
+
logger = logging.getLogger(__name__)
|
| 30 |
+
|
| 31 |
+
# Version info
|
| 32 |
+
__version__ = "1.0.0"
|
| 33 |
+
__service__ = "STT WebSocket Service"
|
| 34 |
+
|
| 35 |
+
class STTWebSocketService:
|
| 36 |
+
"""Standalone STT service with WebSocket-only interface"""
|
| 37 |
+
|
| 38 |
+
def __init__(self):
|
| 39 |
+
self.model = None
|
| 40 |
+
self.processor = None
|
| 41 |
+
self.model_size = "base"
|
| 42 |
+
self.device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 43 |
+
self.active_connections: Dict[str, WebSocket] = {}
|
| 44 |
+
|
| 45 |
+
logger.info(f"🎤 {__service__} v{__version__} initializing...")
|
| 46 |
+
logger.info(f"Device: {self.device}")
|
| 47 |
+
logger.info(f"Model: whisper-{self.model_size}")
|
| 48 |
+
|
| 49 |
+
async def load_model(self):
|
| 50 |
+
"""Load Whisper model with ZeroGPU compatibility"""
|
| 51 |
+
if self.model is None:
|
| 52 |
+
logger.info(f"Loading Whisper {self.model_size} model...")
|
| 53 |
+
|
| 54 |
+
model_name = f"openai/whisper-{self.model_size}"
|
| 55 |
+
self.processor = WhisperProcessor.from_pretrained(model_name)
|
| 56 |
+
self.model = WhisperForConditionalGeneration.from_pretrained(model_name)
|
| 57 |
+
|
| 58 |
+
if self.device == "cuda":
|
| 59 |
+
self.model = self.model.to(self.device)
|
| 60 |
+
|
| 61 |
+
logger.info(f"✅ Model loaded on {self.device}")
|
| 62 |
+
|
| 63 |
+
@spaces.GPU(duration=30)
|
| 64 |
+
async def transcribe_audio(
|
| 65 |
+
self,
|
| 66 |
+
audio_path: str,
|
| 67 |
+
language: str = "auto",
|
| 68 |
+
model_size: str = "base"
|
| 69 |
+
) -> tuple[str, str, Dict[str, Any]]:
|
| 70 |
+
"""Transcribe audio file using Whisper with ZeroGPU"""
|
| 71 |
+
|
| 72 |
+
try:
|
| 73 |
+
start_time = datetime.now()
|
| 74 |
+
|
| 75 |
+
# Ensure model is loaded
|
| 76 |
+
if self.model is None:
|
| 77 |
+
await self.load_model()
|
| 78 |
+
|
| 79 |
+
# Load and preprocess audio (following unmute.sh pattern)
|
| 80 |
+
audio_input, sample_rate = torchaudio.load(audio_path)
|
| 81 |
+
|
| 82 |
+
# Convert to 16kHz mono (Whisper requirement)
|
| 83 |
+
if sample_rate != 16000:
|
| 84 |
+
resampler = torchaudio.transforms.Resample(sample_rate, 16000)
|
| 85 |
+
audio_input = resampler(audio_input)
|
| 86 |
+
|
| 87 |
+
if audio_input.shape[0] > 1:
|
| 88 |
+
audio_input = torch.mean(audio_input, dim=0, keepdim=True)
|
| 89 |
+
|
| 90 |
+
audio_array = audio_input.squeeze().numpy()
|
| 91 |
+
|
| 92 |
+
# Process with Whisper
|
| 93 |
+
inputs = self.processor(
|
| 94 |
+
audio_array,
|
| 95 |
+
sampling_rate=16000,
|
| 96 |
+
return_tensors="pt"
|
| 97 |
+
)
|
| 98 |
+
|
| 99 |
+
if self.device == "cuda":
|
| 100 |
+
inputs = {k: v.to(self.device) for k, v in inputs.items()}
|
| 101 |
+
|
| 102 |
+
# Generate transcription
|
| 103 |
+
with torch.no_grad():
|
| 104 |
+
predicted_ids = self.model.generate(**inputs)
|
| 105 |
+
transcription = self.processor.batch_decode(
|
| 106 |
+
predicted_ids,
|
| 107 |
+
skip_special_tokens=True
|
| 108 |
+
)[0]
|
| 109 |
+
|
| 110 |
+
# Calculate timing
|
| 111 |
+
end_time = datetime.now()
|
| 112 |
+
processing_time = (end_time - start_time).total_seconds()
|
| 113 |
+
|
| 114 |
+
timing_info = {
|
| 115 |
+
"processing_time": processing_time,
|
| 116 |
+
"start_time": start_time.isoformat(),
|
| 117 |
+
"end_time": end_time.isoformat(),
|
| 118 |
+
"model_size": model_size,
|
| 119 |
+
"device": self.device
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
logger.info(f"Transcription completed in {processing_time:.2f}s: '{transcription[:50]}...'")
|
| 123 |
+
|
| 124 |
+
return transcription.strip(), "success", timing_info
|
| 125 |
+
|
| 126 |
+
except Exception as e:
|
| 127 |
+
logger.error(f"Transcription error: {str(e)}")
|
| 128 |
+
return "", "error", {"error": str(e)}
|
| 129 |
+
|
| 130 |
+
async def connect_websocket(self, websocket: WebSocket) -> str:
|
| 131 |
+
"""Accept WebSocket connection and return client ID"""
|
| 132 |
+
client_id = str(uuid.uuid4())
|
| 133 |
+
await websocket.accept()
|
| 134 |
+
self.active_connections[client_id] = websocket
|
| 135 |
+
|
| 136 |
+
# Send connection confirmation
|
| 137 |
+
await websocket.send_text(json.dumps({
|
| 138 |
+
"type": "stt_connection_confirmed",
|
| 139 |
+
"client_id": client_id,
|
| 140 |
+
"service": __service__,
|
| 141 |
+
"version": __version__,
|
| 142 |
+
"model": f"whisper-{self.model_size}",
|
| 143 |
+
"device": self.device,
|
| 144 |
+
"message": "STT WebSocket connected and ready"
|
| 145 |
+
}))
|
| 146 |
+
|
| 147 |
+
logger.info(f"Client {client_id} connected")
|
| 148 |
+
return client_id
|
| 149 |
+
|
| 150 |
+
async def disconnect_websocket(self, client_id: str):
|
| 151 |
+
"""Clean up WebSocket connection"""
|
| 152 |
+
if client_id in self.active_connections:
|
| 153 |
+
del self.active_connections[client_id]
|
| 154 |
+
logger.info(f"Client {client_id} disconnected")
|
| 155 |
+
|
| 156 |
+
async def process_audio_message(self, client_id: str, message: Dict[str, Any]):
|
| 157 |
+
"""Process incoming audio data from WebSocket"""
|
| 158 |
+
try:
|
| 159 |
+
websocket = self.active_connections[client_id]
|
| 160 |
+
|
| 161 |
+
# Extract audio data (base64 encoded)
|
| 162 |
+
audio_data_b64 = message.get("audio_data")
|
| 163 |
+
if not audio_data_b64:
|
| 164 |
+
await websocket.send_text(json.dumps({
|
| 165 |
+
"type": "stt_transcription_error",
|
| 166 |
+
"client_id": client_id,
|
| 167 |
+
"error": "No audio data provided"
|
| 168 |
+
}))
|
| 169 |
+
return
|
| 170 |
+
|
| 171 |
+
# Decode base64 audio
|
| 172 |
+
audio_bytes = base64.b64decode(audio_data_b64)
|
| 173 |
+
|
| 174 |
+
# Save to temporary file
|
| 175 |
+
with tempfile.NamedTemporaryFile(suffix=".webm", delete=False) as tmp_file:
|
| 176 |
+
tmp_file.write(audio_bytes)
|
| 177 |
+
temp_path = tmp_file.name
|
| 178 |
+
|
| 179 |
+
try:
|
| 180 |
+
# Transcribe audio
|
| 181 |
+
transcription, status, timing = await self.transcribe_audio(
|
| 182 |
+
temp_path,
|
| 183 |
+
message.get("language", "auto"),
|
| 184 |
+
message.get("model_size", self.model_size)
|
| 185 |
+
)
|
| 186 |
+
|
| 187 |
+
# Send result back
|
| 188 |
+
if status == "success" and transcription:
|
| 189 |
+
await websocket.send_text(json.dumps({
|
| 190 |
+
"type": "stt_transcription_complete",
|
| 191 |
+
"client_id": client_id,
|
| 192 |
+
"transcription": transcription,
|
| 193 |
+
"timing": timing,
|
| 194 |
+
"status": "success"
|
| 195 |
+
}))
|
| 196 |
+
else:
|
| 197 |
+
await websocket.send_text(json.dumps({
|
| 198 |
+
"type": "stt_transcription_error",
|
| 199 |
+
"client_id": client_id,
|
| 200 |
+
"error": "Transcription failed or empty result",
|
| 201 |
+
"timing": timing
|
| 202 |
+
}))
|
| 203 |
+
|
| 204 |
+
finally:
|
| 205 |
+
# Clean up temp file
|
| 206 |
+
if os.path.exists(temp_path):
|
| 207 |
+
os.unlink(temp_path)
|
| 208 |
+
|
| 209 |
+
except Exception as e:
|
| 210 |
+
logger.error(f"Error processing audio for {client_id}: {str(e)}")
|
| 211 |
+
if client_id in self.active_connections:
|
| 212 |
+
websocket = self.active_connections[client_id]
|
| 213 |
+
await websocket.send_text(json.dumps({
|
| 214 |
+
"type": "stt_transcription_error",
|
| 215 |
+
"client_id": client_id,
|
| 216 |
+
"error": f"Processing error: {str(e)}"
|
| 217 |
+
}))
|
| 218 |
+
|
| 219 |
+
# Initialize service
|
| 220 |
+
stt_service = STTWebSocketService()
|
| 221 |
+
|
| 222 |
+
# Create FastAPI app
|
| 223 |
+
app = FastAPI(
|
| 224 |
+
title="STT WebSocket Service",
|
| 225 |
+
description="Standalone WebSocket-only Speech-to-Text service",
|
| 226 |
+
version=__version__
|
| 227 |
+
)
|
| 228 |
+
|
| 229 |
+
# Add CORS middleware
|
| 230 |
+
app.add_middleware(
|
| 231 |
+
CORSMiddleware,
|
| 232 |
+
allow_origins=["*"],
|
| 233 |
+
allow_credentials=True,
|
| 234 |
+
allow_methods=["*"],
|
| 235 |
+
allow_headers=["*"],
|
| 236 |
+
)
|
| 237 |
+
|
| 238 |
+
@app.on_event("startup")
|
| 239 |
+
async def startup_event():
|
| 240 |
+
"""Initialize service on startup"""
|
| 241 |
+
logger.info(f"🚀 {__service__} v{__version__} starting...")
|
| 242 |
+
logger.info("Pre-loading Whisper model for optimal performance...")
|
| 243 |
+
await stt_service.load_model()
|
| 244 |
+
logger.info("✅ Service ready for WebSocket connections")
|
| 245 |
+
|
| 246 |
+
@app.get("/")
|
| 247 |
+
async def root():
|
| 248 |
+
"""Health check endpoint"""
|
| 249 |
+
return {
|
| 250 |
+
"service": __service__,
|
| 251 |
+
"version": __version__,
|
| 252 |
+
"status": "ready",
|
| 253 |
+
"endpoints": {
|
| 254 |
+
"websocket": "/ws/stt",
|
| 255 |
+
"health": "/health"
|
| 256 |
+
},
|
| 257 |
+
"model": f"whisper-{stt_service.model_size}",
|
| 258 |
+
"device": stt_service.device
|
| 259 |
+
}
|
| 260 |
+
|
| 261 |
+
@app.get("/health")
|
| 262 |
+
async def health_check():
|
| 263 |
+
"""Detailed health check"""
|
| 264 |
+
return {
|
| 265 |
+
"service": __service__,
|
| 266 |
+
"version": __version__,
|
| 267 |
+
"status": "healthy",
|
| 268 |
+
"model_loaded": stt_service.model is not None,
|
| 269 |
+
"active_connections": len(stt_service.active_connections),
|
| 270 |
+
"device": stt_service.device,
|
| 271 |
+
"timestamp": datetime.now().isoformat()
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
@app.websocket("/ws/stt")
|
| 275 |
+
async def websocket_stt_endpoint(websocket: WebSocket):
|
| 276 |
+
"""Main STT WebSocket endpoint"""
|
| 277 |
+
client_id = None
|
| 278 |
+
|
| 279 |
+
try:
|
| 280 |
+
# Accept connection
|
| 281 |
+
client_id = await stt_service.connect_websocket(websocket)
|
| 282 |
+
|
| 283 |
+
# Handle messages
|
| 284 |
+
while True:
|
| 285 |
+
try:
|
| 286 |
+
# Receive message
|
| 287 |
+
data = await websocket.receive_text()
|
| 288 |
+
message = json.loads(data)
|
| 289 |
+
|
| 290 |
+
# Process based on message type
|
| 291 |
+
message_type = message.get("type", "unknown")
|
| 292 |
+
|
| 293 |
+
if message_type == "stt_audio_chunk":
|
| 294 |
+
await stt_service.process_audio_message(client_id, message)
|
| 295 |
+
elif message_type == "ping":
|
| 296 |
+
# Respond to ping
|
| 297 |
+
await websocket.send_text(json.dumps({
|
| 298 |
+
"type": "pong",
|
| 299 |
+
"client_id": client_id,
|
| 300 |
+
"timestamp": datetime.now().isoformat()
|
| 301 |
+
}))
|
| 302 |
+
else:
|
| 303 |
+
logger.warning(f"Unknown message type from {client_id}: {message_type}")
|
| 304 |
+
|
| 305 |
+
except WebSocketDisconnect:
|
| 306 |
+
break
|
| 307 |
+
except json.JSONDecodeError:
|
| 308 |
+
await websocket.send_text(json.dumps({
|
| 309 |
+
"type": "stt_transcription_error",
|
| 310 |
+
"client_id": client_id,
|
| 311 |
+
"error": "Invalid JSON message format"
|
| 312 |
+
}))
|
| 313 |
+
except Exception as e:
|
| 314 |
+
logger.error(f"Error handling message from {client_id}: {str(e)}")
|
| 315 |
+
break
|
| 316 |
+
|
| 317 |
+
except WebSocketDisconnect:
|
| 318 |
+
logger.info(f"Client {client_id} disconnected normally")
|
| 319 |
+
except Exception as e:
|
| 320 |
+
logger.error(f"WebSocket error for {client_id}: {str(e)}")
|
| 321 |
+
finally:
|
| 322 |
+
if client_id:
|
| 323 |
+
await stt_service.disconnect_websocket(client_id)
|
| 324 |
+
|
| 325 |
+
if __name__ == "__main__":
|
| 326 |
+
port = int(os.environ.get("PORT", 7860))
|
| 327 |
+
logger.info(f"🎤 Starting {__service__} v{__version__} on port {port}")
|
| 328 |
+
|
| 329 |
+
uvicorn.run(
|
| 330 |
+
app,
|
| 331 |
+
host="0.0.0.0",
|
| 332 |
+
port=port,
|
| 333 |
+
log_level="info"
|
| 334 |
+
)
|