]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
whisper.nvim : fix missing reference to "model" variable (#2049)
authorKendrick Taylor <redacted>
Mon, 15 Apr 2024 16:41:28 +0000 (09:41 -0700)
committerGitHub <redacted>
Mon, 15 Apr 2024 16:41:28 +0000 (19:41 +0300)
examples/whisper.nvim/whisper.nvim

index 203eddb5c88ba1f052674af2261b6002643f409a..f21099d40308b952f8eb73a5246362760789af53 100755 (executable)
@@ -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