Drop unusable samplers
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Sun, 29 Jun 2025 17:39:46 +0000 (20:39 +0300)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Sun, 29 Jun 2025 17:39:46 +0000 (20:39 +0300)
src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java

index 59e4aa7..fc71786 100644 (file)
@@ -241,7 +241,7 @@ public class AiTask {
                 "--threads-batch " + configuration.getBatchThreadCount(),
                 "--top-k 1", "--top-p 0", // Activates true greedy decoding, now the recommended way to force determinism in recent llama.cpp builds
                 "--min-p 0",
-                "--samplers \"dry;top_k;temperature\"",
+                "--samplers \"top_k\"",
                 "--repeat-penalty 1.05",
                 "--dry-multiplier 0.4", // Low‐ish dry-multiplier adds a soft anti-repetition guard without wrecking logic
                 "--presence-penalty 0.1",