A speech AI buffet for Apple Silicon, no cloud required
Because shipping voice features on Mac and iOS shouldn’t require cloud contracts or API keys.

What it does
speech-swift is a modular Swift package that wraps two dozen speech and audio models—ASR, TTS, diarization, noise suppression, even text-to-music—into Apple-native backends. Everything runs locally on Apple Silicon via MLX or CoreML, so no audio leaves the device. You import only the SPM modules you need, from an 82M-parameter TTS engine up to a 7B speech-to-speech model.
The interesting bit
The breadth is almost comical: transcription across 1,672 languages, 90-minute podcast generation, real-time noise suppression, and full-duplex speech-to-speech conversation, all quantized down to INT4 for laptop memory. It functions like a native-Swift porting house for NVIDIA, Meta, and Alibaba research checkpoints, repackaging them into Apple-friendly binaries.
Key highlights
- Modular SPM targets mean you pay compile and memory cost only for the models you actually ship.
- Backends are split between MLX (flexible research models) and CoreML / Neural Engine (efficient production inference).
- Standout models include Omnilingual ASR (1,672 languages), PersonaPlex (7B full-duplex speech-to-speech), and Kokoro TTS (82M, iOS-ready).
- Includes oddball audio utilities like source separation, 48 kHz super-resolution, and MAGNeT text-to-music generation.
- A companion
SpeechUImodule offers a ready-made SwiftUI transcription view.
Verdict
Ideal for Swift developers building privacy-first voice agents or transcription tools on macOS and iOS. If you’re not targeting Apple Silicon or you need cloud-scale batching, this is the wrong stack.
Frequently asked
- What is soniqo/speech-swift?
- Because shipping voice features on Mac and iOS shouldn’t require cloud contracts or API keys.
- Is speech-swift open source?
- Yes — soniqo/speech-swift is open source, released under the Apache-2.0 license.
- What language is speech-swift written in?
- soniqo/speech-swift is primarily written in Swift.
- How popular is speech-swift?
- soniqo/speech-swift has 1.1k stars on GitHub and is currently accelerating.
- Where can I find speech-swift?
- soniqo/speech-swift is on GitHub at https://github.com/soniqo/speech-swift.