From ac46949b0189865120419f87aca1c5e94f805c20 Mon Sep 17 00:00:00 2001 From: Jake Date: Sat, 18 Apr 2026 10:32:09 +0100 Subject: [PATCH] feat(transcription): enable Vulkan GPU acceleration for Whisper inference --- crates/transcription/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/transcription/Cargo.toml b/crates/transcription/Cargo.toml index 84e5c12..cbeeefa 100644 --- a/crates/transcription/Cargo.toml +++ b/crates/transcription/Cargo.toml @@ -8,7 +8,7 @@ description = "Speech-to-text engine wrappers, model management, and inference c kon-core = { path = "../core" } # Unified STT engine (Parakeet via ONNX, Whisper via whisper.cpp) -transcribe-rs = { version = "0.3", features = ["onnx", "whisper-cpp"] } +transcribe-rs = { version = "0.3", features = ["onnx", "whisper-cpp", "whisper-vulkan"] } # Async runtime for spawn_blocking tokio = { version = "1", features = ["rt", "sync"] }