mirror of
https://github.com/Jeuners/agenttwo-tools.git
synced 2026-09-09 15:02:31 +02:00
docs: RAM-Hinweis, qwen3:8b als leichtere Alternative; setup.sh warnt bei <16 GB RAM
This commit is contained in:
parent
ea87c350a5
commit
969ec6909d
2 changed files with 10 additions and 0 deletions
4
setup.sh
4
setup.sh
|
|
@ -198,6 +198,10 @@ else
|
|||
fi
|
||||
|
||||
sect "9/9 Sprachmodell ($MODEL)"
|
||||
RAM_GB=$(( $(sysctl -n hw.memsize 2>/dev/null || echo 0) / 1024 / 1024 / 1024 ))
|
||||
if [ "$RAM_GB" -gt 0 ] && [ "$RAM_GB" -lt 16 ]; then
|
||||
warn "Nur ${RAM_GB} GB RAM — $MODEL belegt ~7 GB. Leichtere Alternative: qwen3:8b (ollama pull qwen3:8b, dann in .env: MODEL=qwen3:8b)."
|
||||
fi
|
||||
MODEL_OK=0
|
||||
if [ "$OLLAMA_SVC" -eq 1 ]; then
|
||||
if ollama list 2>/dev/null | awk '{print $1}' | grep -qx "$MODEL"; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue