Spaces:
Building
Building
File size: 15,791 Bytes
e231b55 0b962d4 e231b55 331aa0a e231b55 331aa0a e231b55 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
"""
WebSocket Handler for Real-time STT/TTS
"""
from fastapi import WebSocket, WebSocketDisconnect, HTTPException
from typing import Dict, Any, Optional
import json
import asyncio
import base64
from datetime import datetime
import sys
import numpy as np
from enum import Enum
from session import Session, session_store
from config_provider import ConfigProvider
from chat_handler import handle_new_message, handle_parameter_followup
from stt_factory import STTFactory
from tts_factory import TTSFactory
from utils import log
# ========================= CONSTANTS =========================
SILENCE_THRESHOLD_MS = 2000
AUDIO_CHUNK_SIZE = 4096
ENERGY_THRESHOLD = 0.01
# ========================= ENUMS =========================
class ConversationState(Enum):
IDLE = "idle"
LISTENING = "listening"
PROCESSING_STT = "processing_stt"
PROCESSING_LLM = "processing_llm"
PROCESSING_TTS = "processing_tts"
PLAYING_AUDIO = "playing_audio"
# ========================= CLASSES =========================
class AudioBuffer:
"""Buffer for accumulating audio chunks"""
def __init__(self):
self.chunks = []
self.total_size = 0
def add_chunk(self, chunk_data: str):
"""Add base64 encoded audio chunk"""
decoded = base64.b64decode(chunk_data)
self.chunks.append(decoded)
self.total_size += len(decoded)
def get_audio(self) -> bytes:
"""Get concatenated audio data"""
return b''.join(self.chunks)
def clear(self):
"""Clear buffer"""
self.chunks.clear()
self.total_size = 0
class SilenceDetector:
"""Detect silence in audio stream"""
def __init__(self, threshold_ms: int = SILENCE_THRESHOLD_MS, energy_threshold: float = ENERGY_THRESHOLD):
self.threshold_ms = threshold_ms
self.energy_threshold = energy_threshold
self.silence_start = None
self.sample_rate = 16000 # Default sample rate
def is_silence(self, audio_chunk: bytes) -> bool:
"""Check if audio chunk is silence"""
try:
# Convert bytes to numpy array (assuming 16-bit PCM)
audio_data = np.frombuffer(audio_chunk, dtype=np.int16)
# Calculate RMS energy
rms = np.sqrt(np.mean(audio_data**2))
normalized_rms = rms / 32768.0 # Normalize for 16-bit audio
return normalized_rms < self.energy_threshold
except Exception as e:
log(f"β οΈ Silence detection error: {e}")
return False
def update(self, audio_chunk: bytes) -> Optional[int]:
"""Update silence detection and return silence duration in ms"""
is_silent = self.is_silence(audio_chunk)
if is_silent:
if self.silence_start is None:
self.silence_start = datetime.now()
log("π Silence started")
else:
silence_duration = (datetime.now() - self.silence_start).total_seconds() * 1000
return int(silence_duration)
else:
if self.silence_start is not None:
log("π Speech detected, silence broken")
self.silence_start = None
return 0
class BargeInHandler:
"""Handle barge-in (interruption) logic"""
def __init__(self):
self.interrupted_at_state: Optional[ConversationState] = None
self.accumulated_text: str = ""
self.pending_audio_chunks = []
def handle_interruption(self, current_state: ConversationState):
"""Handle user interruption"""
self.interrupted_at_state = current_state
log(f"π Barge-in detected at state: {current_state.value}")
def should_preserve_context(self) -> bool:
"""Check if context should be preserved after interruption"""
# Preserve context if interrupted during LLM or TTS processing
return self.interrupted_at_state in [
ConversationState.PROCESSING_LLM,
ConversationState.PROCESSING_TTS,
ConversationState.PLAYING_AUDIO
]
class ConversationManager:
"""Manage conversation state and flow"""
def __init__(self, session: Session):
self.session = session
self.state = ConversationState.IDLE
self.audio_buffer = AudioBuffer()
self.silence_detector = SilenceDetector()
self.barge_in_handler = BargeInHandler()
self.stt_manager = None
self.current_transcription = ""
self.is_streaming = False
async def initialize_stt(self):
"""Initialize STT provider"""
try:
self.stt_manager = STTFactory.create_provider()
if self.stt_manager:
config = ConfigProvider.get().global_config.stt_settings
await self.stt_manager.start_streaming({
"language": config.get("language", "tr-TR"),
"interim_results": config.get("interim_results", True),
"single_utterance": False, # Important for continuous listening
"enable_punctuation": config.get("enable_punctuation", True)
})
log("β
STT manager initialized")
return True
except Exception as e:
log(f"β Failed to initialize STT: {e}")
return False
def change_state(self, new_state: ConversationState):
"""Change conversation state"""
old_state = self.state
self.state = new_state
log(f"π State change: {old_state.value} β {new_state.value}")
def handle_barge_in(self):
"""Handle user interruption"""
self.barge_in_handler.handle_interruption(self.state)
self.change_state(ConversationState.LISTENING)
def reset_audio_buffer(self):
"""Reset audio buffer for new utterance"""
self.audio_buffer.clear()
self.silence_detector.silence_start = None
self.current_transcription = ""
# ========================= WEBSOCKET HANDLER =========================
async def websocket_endpoint(websocket: WebSocket, session_id: str):
"""Main WebSocket endpoint for real-time conversation"""
await websocket.accept()
log(f"π WebSocket connected for session: {session_id}")
# Get session
session = session_store.get_session(session_id)
if not session:
await websocket.send_json({
"type": "error",
"message": "Session not found"
})
await websocket.close()
return
# Initialize conversation manager
conversation = ConversationManager(session)
# Initialize STT
stt_initialized = await conversation.initialize_stt()
if not stt_initialized:
await websocket.send_json({
"type": "error",
"message": "STT initialization failed"
})
try:
while True:
# Receive message
message = await websocket.receive_json()
message_type = message.get("type")
if message_type == "audio_chunk":
await handle_audio_chunk(websocket, conversation, message)
elif message_type == "control":
await handle_control_message(websocket, conversation, message)
elif message_type == "ping":
# Keep-alive ping
await websocket.send_json({"type": "pong"})
except WebSocketDisconnect:
log(f"π WebSocket disconnected for session: {session_id}")
await cleanup_conversation(conversation)
except Exception as e:
log(f"β WebSocket error: {e}")
await websocket.send_json({
"type": "error",
"message": str(e)
})
await cleanup_conversation(conversation)
# ========================= MESSAGE HANDLERS =========================
async def handle_audio_chunk(websocket: WebSocket, conversation: ConversationManager, message: Dict[str, Any]):
"""Handle incoming audio chunk"""
try:
audio_data = message.get("data")
if not audio_data:
return
# Check for barge-in
if conversation.state in [ConversationState.PLAYING_AUDIO, ConversationState.PROCESSING_TTS]:
conversation.handle_barge_in()
await websocket.send_json({
"type": "control",
"action": "stop_playback"
})
# Change state to listening if idle
if conversation.state == ConversationState.IDLE:
conversation.change_state(ConversationState.LISTENING)
await websocket.send_json({
"type": "state_change",
"from": "idle",
"to": "listening"
})
# Add to buffer
conversation.audio_buffer.add_chunk(audio_data)
# Decode for processing
decoded_audio = base64.b64decode(audio_data)
# Check silence
silence_duration = conversation.silence_detector.update(decoded_audio)
# Stream to STT if available
if conversation.stt_manager and conversation.state == ConversationState.LISTENING:
async for result in conversation.stt_manager.stream_audio(decoded_audio):
# Send interim results
await websocket.send_json({
"type": "transcription",
"text": result.text,
"is_final": result.is_final,
"confidence": result.confidence
})
if result.is_final:
conversation.current_transcription = result.text
# Check if user stopped speaking (2 seconds of silence)
if silence_duration > SILENCE_THRESHOLD_MS and conversation.current_transcription:
log(f"π User stopped speaking after {silence_duration}ms of silence")
await process_user_input(websocket, conversation)
except Exception as e:
log(f"β Audio chunk handling error: {e}")
await websocket.send_json({
"type": "error",
"message": f"Audio processing error: {str(e)}"
})
async def handle_control_message(websocket: WebSocket, conversation: ConversationManager, message: Dict[str, Any]):
"""Handle control messages"""
action = message.get("action")
if action == "start_session":
# Session already started
await websocket.send_json({
"type": "session_started",
"session_id": conversation.session.session_id
})
elif action == "end_session":
# Clean up and close
await cleanup_conversation(conversation)
await websocket.close()
elif action == "interrupt":
# Handle explicit interrupt
conversation.handle_barge_in()
await websocket.send_json({
"type": "control",
"action": "interrupt_acknowledged"
})
elif action == "reset":
# Reset conversation state
conversation.reset_audio_buffer()
conversation.change_state(ConversationState.IDLE)
await websocket.send_json({
"type": "state_change",
"from": conversation.state.value,
"to": "idle"
})
# ========================= PROCESSING FUNCTIONS =========================
async def process_user_input(websocket: WebSocket, conversation: ConversationManager):
"""Process complete user input"""
try:
user_text = conversation.current_transcription
if not user_text:
conversation.reset_audio_buffer()
conversation.change_state(ConversationState.IDLE)
return
log(f"π¬ Processing user input: {user_text}")
# Change state to processing
conversation.change_state(ConversationState.PROCESSING_STT)
await websocket.send_json({
"type": "state_change",
"from": "listening",
"to": "processing_stt"
})
# Send final transcription
await websocket.send_json({
"type": "transcription",
"text": user_text,
"is_final": True,
"confidence": 0.95
})
# Process with LLM
conversation.change_state(ConversationState.PROCESSING_LLM)
await websocket.send_json({
"type": "state_change",
"from": "processing_stt",
"to": "processing_llm"
})
# Add to session history
conversation.session.add_turn("user", user_text)
# Get response based on session state
if conversation.session.state == "await_param":
response_text = await handle_parameter_followup(conversation.session, user_text)
else:
response_text = await handle_new_message(conversation.session, user_text)
# Add response to history
conversation.session.add_turn("assistant", response_text)
# Send text response
await websocket.send_json({
"type": "assistant_response",
"text": response_text
})
# Generate TTS if enabled
tts_provider = TTSFactory.create_provider()
if tts_provider:
conversation.change_state(ConversationState.PROCESSING_TTS)
await websocket.send_json({
"type": "state_change",
"from": "processing_llm",
"to": "processing_tts"
})
# Generate audio
audio_data = await tts_provider.synthesize(response_text)
# Send audio in chunks
chunk_size = 4096
for i in range(0, len(audio_data), chunk_size):
chunk = audio_data[i:i + chunk_size]
await websocket.send_json({
"type": "tts_audio",
"data": base64.b64encode(chunk).decode('utf-8'),
"chunk_index": i // chunk_size,
"is_last": i + chunk_size >= len(audio_data)
})
conversation.change_state(ConversationState.PLAYING_AUDIO)
await websocket.send_json({
"type": "state_change",
"from": "processing_tts",
"to": "playing_audio"
})
else:
# No TTS, go back to idle
conversation.change_state(ConversationState.IDLE)
await websocket.send_json({
"type": "state_change",
"from": "processing_llm",
"to": "idle"
})
# Reset for next input
conversation.reset_audio_buffer()
except Exception as e:
log(f"β Error processing user input: {e}")
await websocket.send_json({
"type": "error",
"message": f"Processing error: {str(e)}"
})
conversation.reset_audio_buffer()
conversation.change_state(ConversationState.IDLE)
# ========================= CLEANUP =========================
async def cleanup_conversation(conversation: ConversationManager):
"""Clean up conversation resources"""
try:
if conversation.stt_manager:
await conversation.stt_manager.stop_streaming()
log(f"π§Ή Cleaned up conversation for session: {conversation.session.session_id}")
except Exception as e:
log(f"β οΈ Cleanup error: {e}") |