From 12351cf6aea4a329c3b3624c41a9ca09f31dd2fb Mon Sep 17 00:00:00 2001 From: Muhammed Al-Dulaimi Date: Sat, 2 Aug 2025 17:43:10 +0300 Subject: [PATCH] bug: use `whisper-mlx` instead of `moonshine` as the STT model for macos - `whisper-mlx` is better than `moonshine` and it is optimized for mac - the README section already says it is using it, but this is not reflected in the code, so this is effectively a bug, not a feature. --- s2s_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s2s_pipeline.py b/s2s_pipeline.py index 36c696f..211d5be 100644 --- a/s2s_pipeline.py +++ b/s2s_pipeline.py @@ -120,7 +120,7 @@ def optimal_mac_settings(mac_optimal_settings: Optional[str], *handler_kwargs): if hasattr(kwargs, "mode"): kwargs.mode = "local" if hasattr(kwargs, "stt"): - kwargs.stt = "moonshine" + kwargs.stt = "whisper-mlx" if hasattr(kwargs, "llm"): kwargs.llm = "mlx-lm" if hasattr(kwargs, "tts"):