Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the ElevenLabs text-to-speech integration."""
2 
3 CONF_VOICE = "voice"
4 CONF_MODEL = "model"
5 CONF_CONFIGURE_VOICE = "configure_voice"
6 CONF_STABILITY = "stability"
7 CONF_SIMILARITY = "similarity"
8 CONF_OPTIMIZE_LATENCY = "optimize_streaming_latency"
9 CONF_STYLE = "style"
10 CONF_USE_SPEAKER_BOOST = "use_speaker_boost"
11 DOMAIN = "elevenlabs"
12 
13 DEFAULT_MODEL = "eleven_multilingual_v2"
14 DEFAULT_STABILITY = 0.5
15 DEFAULT_SIMILARITY = 0.75
16 DEFAULT_OPTIMIZE_LATENCY = 0
17 DEFAULT_STYLE = 0
18 DEFAULT_USE_SPEAKER_BOOST = True