From fdf50e06060d02a364316a001cf0a71bc6fcee28 Mon Sep 17 00:00:00 2001 From: "K. Isom" Date: Fri, 18 Sep 2026 14:28:49 -0700 Subject: [PATCH] straylight: cap Ornith 1.5 sampling and thinking budget Default temp 0.6 / top-p 0.95 / top-k 20 and reasoning-budget 8192 so unrestricted does not stall long agent turns. --- hw/straylight/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hw/straylight/default.nix b/hw/straylight/default.nix index 731402f..00f47a0 100644 --- a/hw/straylight/default.nix +++ b/hw/straylight/default.nix @@ -73,8 +73,14 @@ let ; Ornith 1.5 35B-A3B MoE (official GGUF). ~3B active, multimodal; mmproj ; comes with --hf-repo. Q4_K_M is ~22 GB. + ; Sampling + a thinking cap: unrestricted on this checkpoint stalls + ; long agent turns (Talos). Clients that send their own temperature still win. [ornith-1.5-35b-a3b] hf-repo = ornith-ai/Ornith-1.5-35B-A3B-GGUF:Q4_K_M + temp = 0.6 + top-p = 0.95 + top-k = 20 + reasoning-budget = 8192 dedup-cache-models = true ; Qwen 3.8 27B dense, refusal-ablated. Preferred uncensored coding agent.