chore: bump pipecat

This commit is contained in:
Abhishek Kumar 2026-06-30 14:51:49 +05:30
parent 69bb7be38d
commit 1f89f7864b
3 changed files with 3 additions and 3 deletions

View file

@ -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

@ -1 +1 @@
Subproject commit 0a4126d3174a7e2298ea69f99ead629e8ba704a9
Subproject commit 63f0bc437ebe50ae4616b1cc2d69667c4ae3dc58

View file

@ -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;