diff --git a/pyproject.toml b/pyproject.toml index d662d1d84..29939935f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,7 +162,7 @@ where = ["src"] "src/pipecat/audio/dtmf/dtmf-star.wav", ] "pipecat.services.aws_nova_sonic" = ["src/pipecat/services/aws_nova_sonic/ready.wav"] -"pipecat.audio.turn.smart_turn.data" = ["src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.1-cpu.onnx"] +"pipecat.audio.turn.smart_turn.data" = ["src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.2-cpu.onnx"] [tool.pytest.ini_options] addopts = "--verbose" diff --git a/src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.1-cpu.onnx b/src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.2-cpu.onnx similarity index 56% rename from src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.1-cpu.onnx rename to src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.2-cpu.onnx index 9a2360f19..0eb9495d3 100644 Binary files a/src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.1-cpu.onnx and b/src/pipecat/audio/turn/smart_turn/data/smart-turn-v3.2-cpu.onnx differ diff --git a/src/pipecat/audio/turn/smart_turn/local_smart_turn_v3.py b/src/pipecat/audio/turn/smart_turn/local_smart_turn_v3.py index 406abe165..6629d5968 100644 --- a/src/pipecat/audio/turn/smart_turn/local_smart_turn_v3.py +++ b/src/pipecat/audio/turn/smart_turn/local_smart_turn_v3.py @@ -42,7 +42,7 @@ class LocalSmartTurnAnalyzerV3(BaseSmartTurn): Args: smart_turn_model_path: Path to the ONNX model file. If this is not - set, the bundled smart-turn-v3.1-cpu model will be used. + set, the bundled smart-turn-v3.2-cpu model will be used. cpu_count: The number of CPUs to use for inference. Defaults to 1. **kwargs: Additional arguments passed to BaseSmartTurn. """ @@ -50,7 +50,7 @@ class LocalSmartTurnAnalyzerV3(BaseSmartTurn): if not smart_turn_model_path: # Load bundled model - model_name = "smart-turn-v3.1-cpu.onnx" + model_name = "smart-turn-v3.2-cpu.onnx" package_path = "pipecat.audio.turn.smart_turn.data" try: