8th of June - Voice Intelligence Layer
over 1 year ago by Peadar Coyle
Breaking Change
We refactored and redesigned our Voice Intelligence Layer to use just a voiceIntelligence
boolean and not specify the inner workings of the Dictionary or normaliser. We did this to enhance the Developer Experience
voiceIntelligence: bool = False
We deprecated:
"useDictionary": useDictionary,
"useTextNormalizer": useTextNormalizer
So
speech = audiostack.Speech.TTS.create(
scriptItem=script,
voice=name,
speed=100,
voiceIntelligence="true"
)
Not
speech = audiostack.Speech.TTS.create(
scriptItem=script,
voice=name,
speed=100,
useTextNormalizer=True,
useDictionary=True
)