From 78fa3209e6064e1b7145e0739238ebc940833a8a Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 26 Aug 2025 11:04:46 -0700 Subject: [PATCH] Update install.sh update gemma3:270m --- install.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 7c49cce..2bbdfb4 100755 --- a/install.sh +++ b/install.sh @@ -248,10 +248,9 @@ if [[ $(echo "${embedded}" | grep -i "^n") ]]; then echo "Emoji font installed!, reboot to load the font" fi - printf "\nOptionally if you want to install the multi gig LLM Ollama compnents we will execute the following commands\n" + printf "\nOptionally if you want to install the LLM Ollama compnents we will execute the following commands\n" printf "\ncurl -fsSL https://ollama.com/install.sh | sh\n" - printf "ollama pull gemma3:latest\n" - printf "Total download is multi GB, recomend pi5/8GB or better for this\n" + printf "ollama pull gemma3:270m\n" # ask if the user wants to install the LLM Ollama components printf "\nDo you want to install the LLM Ollama components? (y/n)" read ollama @@ -263,7 +262,7 @@ if [[ $(echo "${embedded}" | grep -i "^n") ]]; then echo "Do you want to install the gemma3:latest components? (y/n)" read gemma if [[ $(echo "${gemma}" | grep -i "^y") ]]; then - ollama pull gemma3:latest + ollama pull gemma3:270m fi fi