From 083732024ff0c19ab35ecdce5ef02d414f36474c Mon Sep 17 00:00:00 2001 From: HyungSeok Han Date: Thu, 16 Nov 2023 11:39:11 -0500 Subject: [PATCH] Update llama_cpp_python to fix issues in mac --- run-mac.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run-mac.sh b/run-mac.sh index 16b0c2f..620f618 100755 --- a/run-mac.sh +++ b/run-mac.sh @@ -186,16 +186,16 @@ llama_cpp_python_installed=$(pip3 list | grep -q llama-cpp-python && echo "insta if [[ "$llama_cpp_python_installed" == "not installed" ]]; then echo "llama-cpp-python is not installed. Installing..." if [[ "$model_type" == "ggml" ]]; then - install_llama_cpp_python "GGML" "0.1.78" + install_llama_cpp_python "GGML" "0.2.18" else - install_llama_cpp_python "GGUF" "0.1.80" + install_llama_cpp_python "GGUF" "0.2.18" fi else echo "llama-cpp-python is installed." if [[ "$model_type" == "ggml" ]]; then - install_llama_cpp_python "GGML" "0.1.78" + install_llama_cpp_python "GGML" "0.2.18" else - install_llama_cpp_python "GGUF" "0.1.80" + install_llama_cpp_python "GGUF" "0.2.18" fi fi