Merge pull request #276056 from KaiHa/pr-openai-whisper-cpp-1.5.2
openai-whisper-cpp: 1.4.2 -> 1.5.2
This commit is contained in:
commit
db9ee6b562
2 changed files with 7 additions and 7 deletions
|
@ -12,13 +12,13 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "whisper-cpp";
|
||||
version = "1.4.2";
|
||||
version = "1.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ggerganov";
|
||||
repo = "whisper.cpp";
|
||||
rev = "refs/tags/v${version}" ;
|
||||
hash = "sha256-Qea9zGLJ41D+l8h1Sg/KJI6Ou02jtbRIxYPGoabM8nY=";
|
||||
hash = "sha256-7pJbROifDajBJUE07Nz8tARB901fWCB+TS4okcnEsvc=";
|
||||
};
|
||||
|
||||
# The upstream download script tries to download the models to the
|
||||
|
|
|
@ -19,18 +19,18 @@ index 749b409..831f4c0 100755
|
|||
-models_path="$(get_script_path)"
|
||||
-
|
||||
# Whisper models
|
||||
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large" )
|
||||
|
||||
@@ -54,8 +42,6 @@ fi
|
||||
models=(
|
||||
"tiny.en"
|
||||
@@ -82,8 +70,6 @@ fi
|
||||
|
||||
printf "Downloading ggml model $model from '$src' ...\n"
|
||||
|
||||
-cd $models_path
|
||||
-cd "$models_path"
|
||||
-
|
||||
if [ -f "ggml-$model.bin" ]; then
|
||||
printf "Model $model already exists. Skipping download.\n"
|
||||
exit 0
|
||||
@@ -77,7 +63,7 @@ if [ $? -ne 0 ]; then
|
||||
@@ -105,7 +91,7 @@ if [ $? -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue