Spaces:
Running
Running
whisper.nvim : fix missing reference to "model" variable (#2049)
Browse files
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
|
| 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
|