1
2
3
4
5
6
7
8
9
10
11
12
13
14
| //go:build darwin && monterey_compat
|
| package engine
|
| import (
| "fmt"
| "voicesnap/internal/model"
|
| sherpa "github.com/k2-fsa/sherpa-onnx-go/sherpa_onnx"
| )
|
| func applyQwen3ASRConfig(_ *sherpa.OfflineRecognizerConfig, _ model.ResolvedModel) error {
| return fmt.Errorf("%s requires the macOS 14+ build", model.Qwen3ASRModelID)
| }
|
|