diff --git a/src/tts/tts.ts b/src/tts/tts.ts index c4c9ce307..fae52c2f6 100644 --- a/src/tts/tts.ts +++ b/src/tts/tts.ts @@ -773,13 +773,17 @@ function isCustomOpenAIEndpoint(): boolean { export const OPENAI_TTS_VOICES = [ "alloy", "ash", + "ballad", + "cedar", "coral", "echo", "fable", - "onyx", + "marin", "nova", + "onyx", "sage", "shimmer", + "verse", ] as const; type OpenAiTtsVoice = (typeof OPENAI_TTS_VOICES)[number];