소스 검색

Updated code comments to English.

Patrice Gaudicheau 1 년 전
부모
커밋
6bc627bbfb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      update_llm.sh

+ 2 - 2
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