浏览代码

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