cleaned a bit the git repo

This commit is contained in:
2026-01-10 18:09:06 +02:00
parent 9ddc385c98
commit b53e2015a2
2 changed files with 0 additions and 8 deletions

Binary file not shown.

View File

@@ -1,8 +0,0 @@
#!/bin/bash
docker-compose up -d
models=("smollm2:135m" "all-minilm:22m" "nomic-embed-text" "qwen2.5:0.5b" "qwen3:0.6b" "gemma3:1b" "hf.co/mradermacher/DeepSeek-R1-Distill-Qwen-1.5B-Fully-Uncensored-i1-GGUF:Q4_K_S")
for model in "${models[@]}"; do
docker exec $(docker ps | grep ollama | awk '{print $1}') bash -c "ollama pull $model"
done
echo ""
echo "---OLLAMA INIT DONE !"