From 2ea220dfed60122d55410513d6f8e76f26c535e2 Mon Sep 17 00:00:00 2001 From: Brandon Weng Date: Wed, 27 Aug 2025 14:48:07 -0400 Subject: [PATCH] use default configs from upstream for parakeet --- VoiceInk/Services/ParakeetTranscriptionService.swift | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/VoiceInk/Services/ParakeetTranscriptionService.swift b/VoiceInk/Services/ParakeetTranscriptionService.swift index 8784aa7..7e3c5c2 100644 --- a/VoiceInk/Services/ParakeetTranscriptionService.swift +++ b/VoiceInk/Services/ParakeetTranscriptionService.swift @@ -26,10 +26,8 @@ class ParakeetTranscriptionService: TranscriptionService { logger.notice("🦜 Starting Parakeet model loading") do { - let tdtConfig = TdtConfig(maxSymbolsPerStep: 3, durationBins: [0, 1, 2, 3, 4]) - let asrConfig = ASRConfig(tdtConfig: tdtConfig) - asrManager = AsrManager(config: asrConfig) - + + asrManager = AsrManager(config: .default) let models: AsrModels if let customDirectory = customModelsDirectory { logger.notice("🦜 Loading models from custom directory: \(customDirectory.path)")