1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Android: Default to a larger voice typing model (#12352)

This commit is contained in:
Henry Heino
2025-06-06 02:05:40 -07:00
committed by GitHub
parent c75b48fbb1
commit 1ecaaa1910

View File

@@ -201,11 +201,8 @@ const whisper: VoiceTypingProvider = {
urlTemplate = 'https://github.com/joplin/voice-typing-models/releases/download/v0.2.0/{task}.zip';
}
// Note: whisper-base-q8_0.fr is also available and may have better performance on French-language
// input.
// TODO: Auto-select the model?
return urlTemplate
.replace(/\{task\}/g, 'whisper-base-q8_0')
.replace(/\{task\}/g, 'whisper-small-q8_0')
.replace(/\{lang\}/g, lang);
},
deleteCachedModels: async (locale) => {