We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b31a0 commit 0a51da1Copy full SHA for 0a51da1
git-commit-push-script.sh
@@ -7,10 +7,9 @@ TIMEOUT_SECONDS=30 # 7B INT4 generates 15 tokens well under 10s warm
7
MAX_COMMIT_LENGTH=72 # Standard git commit length
8
9
# Squish model selection.
10
-# 7B runs at 15-25 tok/s on M3 16GB (comfortably fits in memory).
11
-# 14B is too slow on 16GB — use it only if you have 32GB+ RAM.
12
-# Override: SQUISH_MODEL=14b cm
13
-SQUISH_MODEL="${SQUISH_MODEL:-1.5b cm}"
+# qwen3:8b INT4 (~4.5 GB) — best quality on M3 16GB, ~22 tok/s generate.
+# Override: SQUISH_MODEL=qwen3:4b cm (faster, slightly lower quality)
+SQUISH_MODEL="${SQUISH_MODEL:-qwen3:8b}"
14
15
# Squish server port — must match the port squish is started with.
16
# CLI default is 11435; override with SQUISH_PORT env var.
0 commit comments