Enha: binary whisper stt impl

This commit is contained in:
Grail Finder
2025-11-09 12:59:50 +03:00
parent 4a581f6c12
commit 48f32ba36a
3 changed files with 234 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ type StreamCloser interface {
func NewSTT(logger *slog.Logger, cfg *config.Config) STT {
switch cfg.STT_TYPE {
case "WHISPER_BINARY":
return NewWhisperBinary(logger, cfg)
case "WHISPER_SERVER":
return NewWhisperServer(logger, cfg)
}