Supertonic-3

This first-party Soniqo page documents Supertonic-3 from the local speech-swift / speech-core implementation. Hugging Face bundles are linked below after the integration notes.

Internal Page First

Landing cards and docs menus now point here first; source model and bundle links remain available from this page.

At a Glance

ModelSupertonic-3
RoleG2P-free multilingual text-to-speech
BackendCoreML (Apple Neural Engine / GPU) and LiteRT
Output44.1 kHz mono Float32 PCM
Languages31 languages plus a neutral na tag
LicenseOpenRAIL-M weights, MIT code
StatusReady for CoreML; LiteRT reference implementation in speech-core
SourceSupertone Supertonic-3
Swift productSupertonicTTS
CLI / runtimeShared TTS pipeline / server integration; LiteRT C++ wrapper for edge runtimes

Use

The snippet below mirrors the current speech-swift API or command exposed by the repo.

import SupertonicTTS

let tts = try await SupertonicTTSModel.fromPretrained()
let pcm = try tts.synthesize(
    text: "Hello from an on-device voice.",
    voiceId: "F1",
    language: "en"
)

Model Links

Implementation Notes