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:
Mario Rodas 2023-12-24 18:05:22 -05:00 committed by GitHub
commit db9ee6b562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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