mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 02:48:57 +00:00
* Add ElevenLabs text-to-speech integration * Remove commented out code * Use model_id instead of model_name for elevenlabs api * Apply suggestions from code review Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> * Use async client instead of sync * Add ElevenLabs code owner * Apply suggestions from code review Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> * Set entity title to voice * Rename to elevenlabs * Apply suggestions from code review Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> * Allow multiple voices and options flow * Sort default voice at beginning * Rework config flow to include default model and reloading on options flow * Add error to strings * Add ElevenLabsData and suggestions from code review * Shorten options and config flow * Fix comments * Fix comments * Add wip * Fix * Cleanup * Bump elevenlabs version * Add data description * Fix --------- Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> Co-authored-by: Michael Hansen <mike@rhasspy.org> Co-authored-by: Joostlek <joostlek@outlook.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
8 lines
170 B
Python
8 lines
170 B
Python
"""Constants for the ElevenLabs text-to-speech integration."""
|
|
|
|
CONF_VOICE = "voice"
|
|
CONF_MODEL = "model"
|
|
DOMAIN = "elevenlabs"
|
|
|
|
DEFAULT_MODEL = "eleven_multilingual_v2"
|