From 98b499e2e95a902b2c5a220537bdbe1486a9bd32 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Tue, 1 Apr 2025 10:26:28 -0400 Subject: [PATCH] Remove audio_enhancer option --- src/pipecat/services/gladia/config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pipecat/services/gladia/config.py b/src/pipecat/services/gladia/config.py index 6014dd576..275554418 100644 --- a/src/pipecat/services/gladia/config.py +++ b/src/pipecat/services/gladia/config.py @@ -27,11 +27,9 @@ class PreProcessingConfig(BaseModel): """Configuration for audio pre-processing options. Attributes: - audio_enhancer: Whether to apply audio enhancement speech_threshold: Sensitivity for speech detection (0-1) """ - audio_enhancer: Optional[bool] = None speech_threshold: Optional[float] = None