From: Kendrick Taylor Date: Mon, 15 Apr 2024 16:41:28 +0000 (-0700) Subject: whisper.nvim : fix missing reference to "model" variable (#2049) X-Git-Tag: upstream/1.7.4~838 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=5c554c04fff68feb83392fe275a6ddf31b469c16;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp whisper.nvim : fix missing reference to "model" variable (#2049) --- diff --git a/examples/whisper.nvim/whisper.nvim b/examples/whisper.nvim/whisper.nvim index 203eddb5..f21099d4 100755 --- a/examples/whisper.nvim/whisper.nvim +++ b/examples/whisper.nvim/whisper.nvim @@ -45,6 +45,6 @@ if [ ! -f ./models/ggml-${model}.bin ] ; then fi # fine-tune the parameters according to your machine specs -./stream -t 8 -m models/ggml-base.en.bin --step 350 --length 10000 -f /tmp/whisper.nvim 2> /dev/null +./stream -t 8 -m models/ggml-${model}.bin --step 350 --length 10000 -f /tmp/whisper.nvim 2> /dev/null exit 0