webui : fix lint

This commit is contained in:
Georgi Gerganov 2025-12-14 16:45:07 +02:00
parent 0086c246ee
commit 2652e745ef
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -1401,7 +1401,8 @@ class ChatStore {
if (hasValue(currentConfig.dry_penalty_last_n))
apiOptions.dry_penalty_last_n = Number(currentConfig.dry_penalty_last_n);
if (currentConfig.samplers) apiOptions.samplers = currentConfig.samplers;
if (currentConfig.backend_sampling) apiOptions.backend_sampling = currentConfig.backend_sampling;
if (currentConfig.backend_sampling)
apiOptions.backend_sampling = currentConfig.backend_sampling;
if (currentConfig.custom) apiOptions.custom = currentConfig.custom;
return apiOptions;