"...git@developer.sourcefind.cn:chenpangpang/diffusers.git" did not exist on "6bd55b54bc63fc3c0ae3996f053ec5670524b30e"
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 #!/bin/bash
# update_llm.sh # 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}') 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 for llm in $llm_list; do
docker exec ollama ollama pull $llm docker exec ollama ollama pull $llm
done 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