diff --git a/api/services/pipecat/run_pipeline.py b/api/services/pipecat/run_pipeline.py index db231d1b..18dbeaa3 100644 --- a/api/services/pipecat/run_pipeline.py +++ b/api/services/pipecat/run_pipeline.py @@ -102,7 +102,7 @@ DEFAULT_USER_TURN_STOP_TIMEOUT = 5.0 EXTERNAL_TURN_USER_STOP_TIMEOUT = 30.0 DEFAULT_TURN_START_STRATEGY = "default" DEFAULT_TURN_START_MIN_WORDS = 3 -DEFAULT_PROVISIONAL_VAD_PAUSE_SECS = 1.0 +DEFAULT_PROVISIONAL_VAD_PAUSE_SECS = 1.5 DEFAULT_SMART_TURN_STOP_SECS = 2.0 diff --git a/pipecat b/pipecat index 0a4126d3..63f0bc43 160000 --- a/pipecat +++ b/pipecat @@ -1 +1 @@ -Subproject commit 0a4126d3174a7e2298ea69f99ead629e8ba704a9 +Subproject commit 63f0bc437ebe50ae4616b1cc2d69667c4ae3dc58 diff --git a/ui/src/types/workflow-configurations.ts b/ui/src/types/workflow-configurations.ts index 228dab83..f56bb9c6 100644 --- a/ui/src/types/workflow-configurations.ts +++ b/ui/src/types/workflow-configurations.ts @@ -11,7 +11,7 @@ export interface AmbientNoiseConfiguration { export type TurnStopStrategy = 'transcription' | 'turn_analyzer'; export type TurnStartStrategy = 'default' | 'min_words' | 'provisional_vad'; export const DEFAULT_TURN_START_MIN_WORDS = 3; -export const DEFAULT_PROVISIONAL_VAD_PAUSE_SECS = 1.0; +export const DEFAULT_PROVISIONAL_VAD_PAUSE_SECS = 1.5; export const TURN_START_STRATEGY_OPTIONS: Array<{ value: TurnStartStrategy;