Update src/pipecat/audio/vad/aic_vad.py

Co-authored-by: Andres O. Vela <andresovela@users.noreply.github.com>
This commit is contained in:
Gökmen Görgen
2026-01-20 13:45:41 +01:00
committed by Gökmen Görgen
parent 0e6a423955
commit 09b5b6b12d

View File

@@ -1,8 +1,7 @@
"""AIC-integrated VAD analyzer that lazily binds to the AIC SDK backend. """AIC-integrated VAD analyzer that lazily binds to the AIC SDK backend.
This module provides VAD analyzer implementations that query the AIC SDK's This module provides VAD analyzer implementations that query the AIC SDK's
is_speech_detected() and map it to a float confidence (1.0/0.0). They use is_speech_detected() and map it to a float confidence (1.0/0.0).
10 ms windows based on the sample rate and apply optional AIC VAD parameters.
Classes: Classes:
AICVADAnalyzer: For aic-sdk >= 2.0.0 (uses 'aic_sdk' module) AICVADAnalyzer: For aic-sdk >= 2.0.0 (uses 'aic_sdk' module)