mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-08-30 16:53:21 +08:00
4ea58bc6f3
- Introduced a new audio file, asr_test.wav, for ASR testing purposes. - Created embed.go to embed the ASR test audio file as a byte slice. - Updated initialization.go to utilize the embedded ASR test audio for model transcription checks.
7 lines
80 B
Go
7 lines
80 B
Go
package assets
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed asr_test.wav
|
|
var ASRTestWAV []byte
|