AudioCardConfig
Optional speech-specific capability declarations for a model card.
kind object
Speech serving kind: tts for text-to-speech or stt for speech-to-text.
- AudioCardKind
- null
Speech model kind declared by a model card's [audio] section.
Possible values: [tts, stt]
defaultResponseFormat object
Default encoded audio response format for TTS requests.
- AudioResponseFormat
- null
Audio response formats supported by the speech serving API.
Possible values: [mp3, wav, flac, ogg, opus, pcm]
Encoded audio formats this model can produce for TTS requests.
Possible values: [mp3, wav, flac, ogg, opus, pcm]
[]supportsStreaming object
Whether a validated Skulk runtime path can stream partial speech or transcripts.
- boolean
- null
supportsRealtime object
Whether the model exposes a realtime session interface.
- boolean
- null
supportsVoiceListing object
Whether the model can enumerate voices through a voice-listing API.
- boolean
- null
Stable built-in voice identifiers exposed by the model.
[]voiceCatalog object[]
Optional display and language metadata for every declared built-in voice.
Model-specific voice identifier accepted by speech synthesis.
Human-readable voice name shown by clients.
Ordered BCP 47 language tags for which this voice is a preferred match.
[]referenceProfile object
Bundled reference profile used to condition models without built-in voices.
- string
- null
defaultVoice object
Built-in voice used when a TTS request omits an explicit voice.
- string
- null
supportsReferenceAudio object
Whether the model accepts managed reference audio for voice conditioning.
- boolean
- null
supportsTranslation object
Whether the model can translate speech instead of only transcribing it.
- boolean
- null
Supported output or input sample rates in hertz.
Possible values: > 0
[]{
"kind": "tts",
"defaultResponseFormat": "mp3",
"responseFormats": [
"mp3"
],
"supportsStreaming": true,
"supportsRealtime": true,
"supportsVoiceListing": true,
"voices": [
"string"
],
"voiceCatalog": [
{
"id": "string",
"name": "string",
"preferredLanguages": [
"string"
],
"referenceProfile": "string"
}
],
"defaultVoice": "string",
"supportsReferenceAudio": true,
"supportsTranslation": true,
"sampleRates": [
0
]
}