From ae0993ba9cc83a97368a8576d89366534309ead7 Mon Sep 17 00:00:00 2001 From: Ankush Malaker <43288948+AnkushMalaker@users.noreply.github.com> Date: Sat, 7 Feb 2026 02:25:35 +0000 Subject: [PATCH] Enhance ASR service descriptions and provider feedback in wizard.py - Updated the description for the 'asr-services' to remove the specific mention of 'Parakeet', making it more general. - Improved the console output for auto-selected services to include the transcription provider label, enhancing user feedback during service selection. --- wizard.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wizard.py b/wizard.py index 2ede3a6a..e3beb37a 100755 --- a/wizard.py +++ b/wizard.py @@ -42,7 +42,7 @@ 'asr-services': { 'path': 'extras/asr-services', 'cmd': ['uv', 'run', '--with-requirements', '../../setup-requirements.txt', 'python', 'init.py'], - 'description': 'Offline speech-to-text (Parakeet)' + 'description': 'Offline speech-to-text' }, 'openmemory-mcp': { 'path': 'extras/openmemory-mcp', @@ -131,7 +131,8 @@ def select_services(transcription_provider=None): for service_name, service_config in SERVICES['extras'].items(): # Skip services that will be auto-added based on earlier choices if service_name in auto_added: - console.print(f" ✅ {service_config['description']} [dim](auto-selected for {transcription_provider})[/dim]") + provider_label = {"vibevoice": "VibeVoice", "parakeet": "Parakeet"}.get(transcription_provider, transcription_provider) + console.print(f" ✅ {service_config['description']} ({provider_label}) [dim](auto-selected)[/dim]") continue # Check if service exists