/ pkg / whisperkit / init.go
init.go
 1  package whisperkit
 2  
 3  type WhisperKitProcessor struct {
 4  	WorkDir string // 生成中间文件的目录
 5  	Model   string
 6  }
 7  
 8  func NewWhisperKitProcessor(model string) *WhisperKitProcessor {
 9  	return &WhisperKitProcessor{
10  		Model: model,
11  	}
12  }