Remove self._voice_id from TTS Service implementations in favor of self._settings.voice

This commit is contained in:
Paul Kompfner
2026-02-20 10:48:16 -05:00
parent 5d8a5bf750
commit f4e9825c03
26 changed files with 103 additions and 115 deletions

View File

@@ -291,9 +291,8 @@ class NewTTSService(TTSService):
voice: Voice identifier to use.
**kwargs: Additional arguments passed to the parent service.
"""
super().__init__(**kwargs)
super().__init__(voice=voice, **kwargs)
self._api_key = api_key
self._voice_id = voice
```
---