fix: switch TTS voice from nova to sage

This commit is contained in:
2026-06-04 14:22:18 -04:00
parent f98f87b7ee
commit 3128f69e48
+1 -1
View File
@@ -101,7 +101,7 @@ async def synthesize_speech(text: str, websocket, speaking_start_sent: bool = Fa
try: try:
async with client.audio.speech.with_streaming_response.create( async with client.audio.speech.with_streaming_response.create(
model="tts-1", model="tts-1",
voice="nova", voice="sage",
input=text, input=text,
response_format="opus", response_format="opus",
) as resp: ) as resp: