Merge pull request #124 from unslothai/feature/bug-fixes

feat: support disabling top-k sampling with -1 and standardize normalization
This commit is contained in:
Wasim Yousef Said 2026-02-16 13:21:12 -08:00 committed by GitHub
commit 16f79a73de
3 changed files with 9 additions and 3 deletions

View file

@ -295,7 +295,7 @@ export function ChatSettingsPanel({
<ParamSlider
label="Top K"
value={params.topK}
min={0}
min={-1}
max={100}
step={1}
onChange={set("topK")}