//go:build !sherpa package punctuation import ( "fmt" "go-whisper-api/config" ) func newSherpaRestorer(cfg config.Punctuation) (Restorer, error) { return nil, fmt.Errorf("punctuation engine %q requires build tag sherpa (use: make build)", cfg.Engine) }