From 3128f69e4895850d5c169da7d01bd23cb9dec16d Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Thu, 4 Jun 2026 14:22:18 -0400 Subject: [PATCH] fix: switch TTS voice from nova to sage --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 5d51419..9cf9be5 100644 --- a/backend/main.py +++ b/backend/main.py @@ -101,7 +101,7 @@ async def synthesize_speech(text: str, websocket, speaking_start_sent: bool = Fa try: async with client.audio.speech.with_streaming_response.create( model="tts-1", - voice="nova", + voice="sage", input=text, response_format="opus", ) as resp: