1 Star 0 Fork 0

thinkerai/open-webui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update_ollama_models.sh 270 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# update_llm.sh
# Retrieves the list of LLMs installed in the Docker container
llm_list=$(docker exec ollama ollama list | tail -n +2 | awk '{print $1}')
# Loop over each LLM to update it
for llm in $llm_list; do
docker exec ollama ollama pull $llm
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/thinkerai/open-webui.git
git@gitee.com:thinkerai/open-webui.git
thinkerai
open-webui
open-webui
main

搜索帮助