whisper.nvim : fix missing reference to "model" variable (#2049)

This commit is contained in:
Kendrick Taylor 2024-04-15 09:41:28 -07:00 committed by GitHub
parent c383f091a1
commit 5c554c04ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,6 +45,6 @@ if [ ! -f ./models/ggml-${model}.bin ] ; then
fi fi
# fine-tune the parameters according to your machine specs # 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 exit 0