Skip to content

Commit

Permalink
whisper.nvim : fix missing reference to "model" variable (openai#2049)
Browse files Browse the repository at this point in the history
  • Loading branch information
sixcircuit authored Apr 15, 2024
1 parent c383f09 commit 5c554c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/whisper.nvim/whisper.nvim
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5c554c0

Please sign in to comment.