We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c83c1 commit ba25b27Copy full SHA for ba25b27
1 file changed
src/pipecat/services/hathora/tts.py
@@ -78,15 +78,14 @@ def __init__(
78
"""
79
super().__init__(
80
**kwargs,
81
+ voice_id=voice_id,
82
)
83
self._model = model
- self._voice = voice
84
self._speed = speed
85
self._model_config = model_config
86
self._base_url = base_url
87
self._api_key = api_key or os.getenv("HATHORA_API_KEY")
88
89
- @traced_tts
90
async def run_tts(self, text: str) -> AsyncGenerator[Frame, None]:
91
"""Run text-to-speech synthesis on the provided text.
92
0 commit comments