Add DRY to llama.cpp sampler order

This commit is contained in:
DocShotgun
2024-12-18 19:04:49 -08:00
parent 00363cc206
commit 6193eb14da
2 changed files with 2 additions and 0 deletions

View File

@ -1736,6 +1736,7 @@
<div data-name="tfs_z" draggable="true"><span>Tail Free Sampling</span><small></small></div>
<div data-name="min_p" draggable="true"><span>Min P</span><small></small></div>
<div data-name="xtc" draggable="true"><span>Exclude Top Choices</span><small></small></div>
<div data-name="dry" draggable="true"><span>DRY</span><small></small></div>
</div>
<div id="llamacpp_samplers_default_order" class="menu_button menu_button_icon">
<span data-i18n="Load default order">Load default order</span>

View File

@ -55,6 +55,7 @@ const {
} = textgen_types;
const LLAMACPP_DEFAULT_ORDER = [
'dry',
'top_k',
'tfs_z',
'typical_p',