diff --git a/src/ui/Features/Video/SpeechToText/Engines/CrispAsrCohere.cs b/src/ui/Features/Video/SpeechToText/Engines/CrispAsrCohere.cs index d11ee0f629..3738a3e2c5 100644 --- a/src/ui/Features/Video/SpeechToText/Engines/CrispAsrCohere.cs +++ b/src/ui/Features/Video/SpeechToText/Engines/CrispAsrCohere.cs @@ -96,6 +96,73 @@ public class CrispAsrCohere : CrispAsrEngineBase ], }, + // Arabic/English specialist (cohere-transcribe-arabic-07-2026), tuned for Arabic dialects + // and Arabic/English code switching - clearly ahead of the general model on Arabic. + new WhisperModel + { + Name = "cohere-transcribe-arabic-q4_k.gguf", + Size = "1.51 GB", + Urls = + [ + "https://huggingface.co/cstr/cohere-transcribe-arabic-07-2026-GGUF/resolve/main/cohere-transcribe-arabic-q4_k.gguf", + ], + }, + new WhisperModel + { + Name = "cohere-transcribe-arabic-q8_0.gguf", + Size = "2.42 GB", + Urls = + [ + "https://huggingface.co/cstr/cohere-transcribe-arabic-07-2026-GGUF/resolve/main/cohere-transcribe-arabic-q8_0.gguf", + ], + }, + new WhisperModel + { + Name = "cohere-transcribe-arabic-f16.gguf", + Size = "4.14 GB", + Urls = + [ + "https://huggingface.co/cstr/cohere-transcribe-arabic-07-2026-GGUF/resolve/main/cohere-transcribe-arabic-f16.gguf", + ], + }, + + // Japanese fine-tune (efwkjn/cohere-asr-ja), general + anime domains. + new WhisperModel + { + Name = "cohere-asr-ja-q4_k.gguf", + Size = "1.51 GB", + Urls = + [ + "https://huggingface.co/CKHO/cohere-asr-ja-GGUF/resolve/main/cohere-asr-ja-q4_k.gguf", + ], + }, + new WhisperModel + { + Name = "cohere-asr-ja-q6_k.gguf", + Size = "1.98 GB", + Urls = + [ + "https://huggingface.co/CKHO/cohere-asr-ja-GGUF/resolve/main/cohere-asr-ja-q6_k.gguf", + ], + }, + new WhisperModel + { + Name = "cohere-asr-ja-q8_0.gguf", + Size = "2.42 GB", + Urls = + [ + "https://huggingface.co/CKHO/cohere-asr-ja-GGUF/resolve/main/cohere-asr-ja-q8_0.gguf", + ], + }, + new WhisperModel + { + Name = "cohere-asr-ja-f16.gguf", + Size = "4.14 GB", + Urls = + [ + "https://huggingface.co/CKHO/cohere-asr-ja-GGUF/resolve/main/cohere-asr-ja-f16.gguf", + ], + }, }; public override string Extension => string.Empty;