Unverified Commit 6bc627bb authored by Patrice Gaudicheau's avatar Patrice Gaudicheau Committed by GitHub
Browse files

Updated code comments to English.

parent 5adff776
#!/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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment