sixcircuit commited on
Commit
515c36e
·
unverified ·
1 Parent(s): 9d38bd6

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

Browse files
Files changed (1) hide show
  1. examples/whisper.nvim/whisper.nvim +1 -1
examples/whisper.nvim/whisper.nvim CHANGED
@@ -45,6 +45,6 @@ if [ ! -f ./models/ggml-${model}.bin ] ; then
45
  fi
46
 
47
  # fine-tune the parameters according to your machine specs
48
- ./stream -t 8 -m models/ggml-base.en.bin --step 350 --length 10000 -f /tmp/whisper.nvim 2> /dev/null
49
 
50
  exit 0
 
45
  fi
46
 
47
  # fine-tune the parameters according to your machine specs
48
+ ./stream -t 8 -m models/ggml-${model}.bin --step 350 --length 10000 -f /tmp/whisper.nvim 2> /dev/null
49
 
50
  exit 0