Skip to content

modelTypes

const modelTypes: object

Defined in: voices.ts:15

TTS model types for use with createNarration.

  • expressive: expressive synthesis with natural-sounding speech.
  • consistent: consistent synthesis with stable pronunciation.

readonly consistent: "consistent" = 'consistent'

readonly expressive: "expressive" = 'expressive'

createNarration({
voice: { name: voices.Ava, modelType: modelTypes.expressive },
en: { intro: 'Hello' },
})