From: Svjatoslav Agejenko Date: Sun, 29 Jun 2025 17:39:46 +0000 (+0300) Subject: Drop unusable samplers X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=commitdiff_plain;h=00743cd48c40967e6245c46d59e6c1f9ef91db2c;p=alyverkko-cli.git Drop unusable samplers --- diff --git a/src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java b/src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java index 59e4aa7..fc71786 100644 --- a/src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java +++ b/src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java @@ -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",