From 44cf5eee8fba096496f0704cec44fd436ecb5c2e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 19 Jul 2025 22:27:13 +0300 Subject: feat: update default voice to alloy with speed 0.98 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed default voice from 'nova' to 'alloy' - Changed default speed from 0.9 to 0.98 for better clarity - GUI now uses default voice/speed for first generation - Regeneration still uses random voice/speed for variety πŸ€– Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- internal/audio/provider.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/audio') diff --git a/internal/audio/provider.go b/internal/audio/provider.go index fd47ef4..53b08c1 100644 --- a/internal/audio/provider.go +++ b/internal/audio/provider.go @@ -42,8 +42,8 @@ func DefaultProviderConfig() *Config { OutputDir: "./", OutputFormat: "mp3", OpenAIModel: "gpt-4o-mini-tts", // New model with voice instructions support - OpenAIVoice: "nova", - OpenAISpeed: 0.9, // Slightly slower for clarity (note: may be ignored by gpt-4o-mini-tts) + OpenAIVoice: "alloy", + OpenAISpeed: 0.98, // Default speed for clarity OpenAIInstruction: "You are speaking Bulgarian language (Π±ΡŠΠ»Π³Π°Ρ€ΡΠΊΠΈ Π΅Π·ΠΈΠΊ). Pronounce the Bulgarian text with authentic Bulgarian phonetics, not Russian. Speak slowly and clearly for language learners.", EnableCache: true, CacheDir: "./.audio_cache", -- cgit v1.2.3