Ariver
2026-07-01 2547282e0942a09b67fccfd53cf62a403ccd4a52
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 ""
}