[feat] integrate native whisper support for audio transcription

This commit is contained in:
2025-08-08 05:55:06 +02:00
parent 36902e8de1
commit 7b95f748a2
3 changed files with 354 additions and 86 deletions

View File

@@ -10,3 +10,8 @@ serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
toml = "0.8"
chrono = { version = "0.4", features = ["clock"] }
whisper-rs = { git = "https://github.com/tazz4843/whisper-rs", optional = true }
[features]
default = ["native-whisper"]
native-whisper = ["whisper-rs"]