Merge pull request #3404 from poseneror/feature/gladia-vad-events
feat(gladia): add VAD events support
This commit is contained in:
@@ -169,6 +169,9 @@ class GladiaInputParams(BaseModel):
|
|||||||
pre_processing: Audio pre-processing options
|
pre_processing: Audio pre-processing options
|
||||||
realtime_processing: Real-time processing features
|
realtime_processing: Real-time processing features
|
||||||
messages_config: WebSocket message filtering options
|
messages_config: WebSocket message filtering options
|
||||||
|
enable_vad: Enable VAD to trigger end of utterance detection. This should be used
|
||||||
|
without any other VAD enabled in the agent and will emit the speaker started
|
||||||
|
and stopped frames. Defaults to False.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
encoding: Optional[str] = "wav/pcm"
|
encoding: Optional[str] = "wav/pcm"
|
||||||
@@ -182,3 +185,4 @@ class GladiaInputParams(BaseModel):
|
|||||||
pre_processing: Optional[PreProcessingConfig] = None
|
pre_processing: Optional[PreProcessingConfig] = None
|
||||||
realtime_processing: Optional[RealtimeProcessingConfig] = None
|
realtime_processing: Optional[RealtimeProcessingConfig] = None
|
||||||
messages_config: Optional[MessagesConfig] = None
|
messages_config: Optional[MessagesConfig] = None
|
||||||
|
enable_vad: bool = False
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ from pipecat.frames.frames import (
|
|||||||
StartFrame,
|
StartFrame,
|
||||||
TranscriptionFrame,
|
TranscriptionFrame,
|
||||||
TranslationFrame,
|
TranslationFrame,
|
||||||
|
UserStartedSpeakingFrame,
|
||||||
|
UserStoppedSpeakingFrame,
|
||||||
)
|
)
|
||||||
from pipecat.services.gladia.config import GladiaInputParams
|
from pipecat.services.gladia.config import GladiaInputParams
|
||||||
from pipecat.services.stt_service import WebsocketSTTService
|
from pipecat.services.stt_service import WebsocketSTTService
|
||||||
@@ -202,6 +204,7 @@ class GladiaSTTService(WebsocketSTTService):
|
|||||||
model: str = "solaria-1",
|
model: str = "solaria-1",
|
||||||
params: Optional[GladiaInputParams] = None,
|
params: Optional[GladiaInputParams] = None,
|
||||||
max_buffer_size: int = 1024 * 1024 * 20, # 20MB default buffer
|
max_buffer_size: int = 1024 * 1024 * 20, # 20MB default buffer
|
||||||
|
should_interrupt: bool = True,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
):
|
):
|
||||||
"""Initialize the Gladia STT service.
|
"""Initialize the Gladia STT service.
|
||||||
@@ -220,6 +223,8 @@ class GladiaSTTService(WebsocketSTTService):
|
|||||||
model: Model to use for transcription. Defaults to "solaria-1".
|
model: Model to use for transcription. Defaults to "solaria-1".
|
||||||
params: Additional configuration parameters for Gladia service.
|
params: Additional configuration parameters for Gladia service.
|
||||||
max_buffer_size: Maximum size of audio buffer in bytes. Defaults to 20MB.
|
max_buffer_size: Maximum size of audio buffer in bytes. Defaults to 20MB.
|
||||||
|
should_interrupt: Determine whether the bot should be interrupted when
|
||||||
|
Gladia VAD detects user speech. Defaults to True.
|
||||||
**kwargs: Additional arguments passed to the STTService parent class.
|
**kwargs: Additional arguments passed to the STTService parent class.
|
||||||
"""
|
"""
|
||||||
super().__init__(sample_rate=sample_rate, **kwargs)
|
super().__init__(sample_rate=sample_rate, **kwargs)
|
||||||
@@ -266,6 +271,10 @@ class GladiaSTTService(WebsocketSTTService):
|
|||||||
self._max_buffer_size = max_buffer_size
|
self._max_buffer_size = max_buffer_size
|
||||||
self._buffer_lock = asyncio.Lock()
|
self._buffer_lock = asyncio.Lock()
|
||||||
|
|
||||||
|
# VAD state tracking
|
||||||
|
self._is_speaking = False
|
||||||
|
self._should_interrupt = should_interrupt
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"{self.name} [{self._session_id}]"
|
return f"{self.name} [{self._session_id}]"
|
||||||
|
|
||||||
@@ -507,6 +516,33 @@ class GladiaSTTService(WebsocketSTTService):
|
|||||||
await self.stop_ttfb_metrics()
|
await self.stop_ttfb_metrics()
|
||||||
await self.stop_processing_metrics()
|
await self.stop_processing_metrics()
|
||||||
|
|
||||||
|
async def _on_speech_started(self):
|
||||||
|
"""Handle speech start event from Gladia.
|
||||||
|
|
||||||
|
Broadcasts UserStartedSpeakingFrame and optionally triggers interruption
|
||||||
|
when VAD is enabled.
|
||||||
|
"""
|
||||||
|
if not self._params.enable_vad or self._is_speaking:
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.debug(f"{self} User started speaking")
|
||||||
|
self._is_speaking = True
|
||||||
|
|
||||||
|
await self.broadcast_frame(UserStartedSpeakingFrame)
|
||||||
|
if self._should_interrupt:
|
||||||
|
await self.push_interruption_task_frame_and_wait()
|
||||||
|
|
||||||
|
async def _on_speech_ended(self):
|
||||||
|
"""Handle speech end event from Gladia.
|
||||||
|
|
||||||
|
Broadcasts UserStoppedSpeakingFrame when VAD is enabled.
|
||||||
|
"""
|
||||||
|
if not self._params.enable_vad or not self._is_speaking:
|
||||||
|
return
|
||||||
|
self._is_speaking = False
|
||||||
|
await self.broadcast_frame(UserStoppedSpeakingFrame)
|
||||||
|
logger.debug(f"{self} User stopped speaking")
|
||||||
|
|
||||||
async def _send_audio(self, audio: bytes):
|
async def _send_audio(self, audio: bytes):
|
||||||
"""Send audio chunk with proper message format."""
|
"""Send audio chunk with proper message format."""
|
||||||
if self._websocket and self._websocket.state is State.OPEN:
|
if self._websocket and self._websocket.state is State.OPEN:
|
||||||
@@ -599,6 +635,10 @@ class GladiaSTTService(WebsocketSTTService):
|
|||||||
translation, "", time_now_iso8601(), translated_language
|
translation, "", time_now_iso8601(), translated_language
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
elif content["type"] == "speech_start":
|
||||||
|
await self._on_speech_started()
|
||||||
|
elif content["type"] == "speech_end":
|
||||||
|
await self._on_speech_ended()
|
||||||
except json.JSONDecodeError:
|
except json.JSONDecodeError:
|
||||||
logger.warning(f"{self} Received non-JSON message: {message}")
|
logger.warning(f"{self} Received non-JSON message: {message}")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user