From 00743cd48c40967e6245c46d59e6c1f9ef91db2c Mon Sep 17 00:00:00 2001 From: Svjatoslav Agejenko Date: Sun, 29 Jun 2025 20:39:46 +0300 Subject: [PATCH] Drop unusable samplers --- src/main/java/eu/svjatoslav/alyverkko_cli/AiTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- 2.20.1