From 024fac90cdf99d5eda2920ada70cd5d085a0fc7b Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 4 Sep 2024 19:50:49 -0700 Subject: [PATCH] Update install.sh --- install.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install.sh b/install.sh index 1ea17c4..e3db460 100755 --- a/install.sh +++ b/install.sh @@ -118,7 +118,17 @@ echo "Do you want to install the LLM Ollama components? (y/n)" read ollama if [ $ollama == "y" ]; then curl -fsSL https://ollama.com/install.sh | sh + + # ask if want to install gemma2:2b + printf "\n Ollama install done now we can install the Gemma2:2b components, multi GB download\n" + echo "Do you want to install the Gemma2:2b components? (y/n)" + read gemma + if [ $gemma == "y" ]; then + olamma pull gemma2:2b + fi fi + + printf "\nGoodbye!" exit 0