Files
WeKnora/internal/assets/embed.go
T
wizardchen 4ea58bc6f3 feat(assets): add ASR test audio file and embed it in the application
- 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.
2026-04-02 21:27:27 +08:00

7 lines
80 B
Go

package assets
import _ "embed"
//go:embed asr_test.wav
var ASRTestWAV []byte