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 -2Ignore whitespace
public/scripts/textgen-settings.js+2 -2
@@ -1335,8 +1335,8 @@ export async function getTextGenGenerationData(finalPrompt, maxTokens, isImperso
1335 'sampler_order': settings.type === textgen_types.KOBOLDCPP ? settings.sampler_order : undefined,1335 'sampler_order': settings.type === textgen_types.KOBOLDCPP ? settings.sampler_order : undefined,
1336 'xtc_threshold': settings.xtc_threshold,1336 'xtc_threshold': settings.xtc_threshold,
1337 'xtc_probability': settings.xtc_probability,1337 '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,
1340 'min_keep': settings.min_keep,1340 'min_keep': settings.min_keep,
1341 };1341 };
1342 const nonAphroditeParams = {1342 const nonAphroditeParams = {