mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
Adding Makefile and LLM update script
This commit is contained in:
10
update_llm.sh
Normal file
10
update_llm.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
# update_llm.sh
|
||||
|
||||
# Récupère la liste des LLM installées dans le container Docker
|
||||
llm_list=$(docker exec ollama ollama list | tail -n +2 | awk '{print $1}')
|
||||
|
||||
# Boucle sur chaque LLM pour la mettre à jour
|
||||
for llm in $llm_list; do
|
||||
docker exec ollama ollama pull $llm
|
||||
done
|
||||
Reference in New Issue
Block a user