From 6bc627bbfba1bf9232286e53993a857aa5cc005b Mon Sep 17 00:00:00 2001 From: Patrice Gaudicheau <61966507+Patrice-Gaudicheau@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:52:55 +0100 Subject: [PATCH] Updated code comments to English. --- update_llm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update_llm.sh b/update_llm.sh index 4bc423f08..bde11b4b2 100644 --- a/update_llm.sh +++ b/update_llm.sh @@ -1,10 +1,10 @@ #!/bin/bash # update_llm.sh -# Récupère la liste des LLM installées dans le container Docker +# Retrieves the list of LLMs installed in the Docker container llm_list=$(docker exec ollama ollama list | tail -n +2 | awk '{print $1}') -# Boucle sur chaque LLM pour la mettre à jour +# Loop over each LLM to update it for llm in $llm_list; do docker exec ollama ollama pull $llm done