whisper.cpp native addon for Windows x64 with Vulkan and OpenVINO acceleration
npm install @whisper-cpp-node/win32-x64whisper-cpp-node on compatible platforms.
whisper-cpp-node instead.
javascript
const ctx = createWhisperContext({
model: "./models/ggml-large-v3-turbo-q5_0.bin",
use_gpu: true, // Vulkan decoder
flash_attn: true, // Flash attention
use_openvino: true, // OpenVINO encoder (optional)
openvino_device: "GPU", // or "CPU"
});
``