Roadmap
Features on the SM-AI-MODELS roadmap. Everything on this page is planned / in progress and not yet available in the production API. The endpoints below are shown for early integration planning and may change before release.
Voice Library โ GET /v1/tts/voices ยท ๐ Coming Soon
List all voices available to your API key (built-in and your cloned voices), so
the returned voice_id can be passed as voice in a TTS request.
Planned response:
Code
Planned usage flow: GET /v1/tts/voices โ pick a voice_id โ
POST /v1/tts/audio/speech {"voice": "cv_8f3a91", ...}.
Voice Cloning โ ๐ Coming Soon
Create a custom voice from your own audio samples, scoped to your API key. Cloned
voices are private to the tenant's API key and returned by GET /v1/tts/voices
alongside the built-in voices.
| Endpoint | Purpose |
|---|---|
POST /v1/tts/voices | Create a cloned voice โ multipart: name + audio samples; returns voice_id, status: "training" |
GET /v1/tts/voices/{voice_id} | Poll status: training โ ready |
DELETE /v1/tts/voices/{voice_id} | Remove a cloned voice |
Coming Soon โ these endpoints are not live yet and are not available in the API playground.
Open items (to be finalized)
- Sample-audio requirements (minutes, format)
- Training time
- Whether cloned voices support all dialects or only the dialect of the samples
- Pricing / tier gating
