We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8061d6a commit 76651e2Copy full SHA for 76651e2
models/download-ggml-model.sh
@@ -101,7 +101,9 @@ if [ -f "ggml-$model.bin" ]; then
101
exit 0
102
fi
103
104
-if [ -x "$(command -v wget)" ]; then
+if [ -x "$(command -v wget2)" ]; then
105
+ wget2 --no-config --progress bar -O ggml-"$model".bin $src/$pfx-"$model".bin
106
+elif [ -x "$(command -v wget)" ]; then
107
wget --no-config --quiet --show-progress -O ggml-"$model".bin $src/$pfx-"$model".bin
108
elif [ -x "$(command -v curl)" ]; then
109
curl -L --output ggml-"$model".bin $src/$pfx-"$model".bin
0 commit comments