A lightweight text-to-speech (TTS) model from Kyutai designed to run efficiently on CPUs.
albamariusjavertjeanfantinecosetteeponineazelma
mlx-audio-swift-tts --model mlx-community/pocket-tts --text "Hello world."import MLXAudioTTS
let model = try await PocketTTSModel.fromPretrained("mlx-community/pocket-tts")
let audio = try await model.generate(
text: "Hello world.",
voice: "alba",
generationParameters: GenerateParameters()
)