Ariver
2026-06-29 9d4f977026bbb4516f8cc97f715c0dc28bf2a13f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package model
 
const UnsupportedReasonRequiresMacOS14 = "requires_macos_14"
 
func IsModelSupportedInCurrentBuild(modelID string) bool {
    if modelID == Qwen3ASRModelID {
        return qwen3ASRSupportedInCurrentBuild
    }
    return true
}
 
func ModelUnsupportedReason(modelID string) string {
    if modelID == Qwen3ASRModelID && !IsModelSupportedInCurrentBuild(modelID) {
        return UnsupportedReasonRequiresMacOS14
    }
    return ""
}