Remove special handling of nsigma for llama.cpp * 0 now changed to disable/no-op upstream

3be991591fa4d07e1546b9bbc34c00753aa0a40a

DocShotgun <126566557+DocShotgun@users.noreply.github.com>

1 files changed, +2 -2Showing whitespace changes
public/scripts/textgen-settings.js+2 -2
@@ -1335,8 +1335,8 @@ export async function getTextGenGenerationData(finalPrompt, maxTokens, isImperso
13351335 'sampler_order': settings.type === textgen_types.KOBOLDCPP ? settings.sampler_order : undefined,
13361336 'xtc_threshold': settings.xtc_threshold,
13371337 'xtc_probability': settings.xtc_probability,
1338- 'nsigma': [LLAMACPP].includes(settings.type) && settings.nsigma === 0 ? -1 : settings.nsigma,
1338+ 'nsigma': settings.nsigma,
1339- 'top_n_sigma': [LLAMACPP].includes(settings.type) && settings.nsigma === 0 ? -1 : settings.nsigma,
1339+ 'top_n_sigma': settings.nsigma,
13401340 'min_keep': settings.min_keep,
13411341 };
13421342 const nonAphroditeParams = {