Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 641 Bytes

File metadata and controls

35 lines (26 loc) · 641 Bytes

Pocket TTS

A lightweight text-to-speech (TTS) model from Kyutai designed to run efficiently on CPUs.

Blog Post

Supported Voices

  • alba
  • marius
  • javert
  • jean
  • fantine
  • cosette
  • eponine
  • azelma

CLI Example

mlx-audio-swift-tts --model mlx-community/pocket-tts --text "Hello world."

Swift Example

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()
)