Pass max length to Kobold GUI settings

This commit is contained in:
Cohee 2023-09-14 18:20:12 +03:00
parent f6c29c61df
commit 52891898d2
2 changed files with 3 additions and 7 deletions

View File

@ -2987,9 +2987,7 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject,
prompt: finalPrompt,
gui_settings: true,
max_length: amount_gen,
temperature: kai_settings.temp,
max_context_length: max_context,
singleline: kai_settings.single_line,
};
if (preset_settings != 'gui') {
@ -7877,13 +7875,11 @@ jQuery(async function () {
setGenerationParamsFromPreset(preset);
$("#range_block").find('input').prop("disabled", false);
$("#range_block").css("opacity", 1.0);
$("#kobold-advanced-config").find('input').prop("disabled", false);
$("#kobold-advanced-config").css('opacity', 1.0);
$("#range_block").css("opacity", 1.0);
$("#amount_gen_block").find('input').prop("disabled", false);
$("#amount_gen_block").css("opacity", 1.0);
$("#kobold_order").sortable("enable");
} else {
//$('.button').disableSelection();

View File

@ -489,7 +489,7 @@ app.post("/generate", jsonParser, async function (request, response_generate) {
use_authors_note: false,
use_world_info: false,
max_context_length: request.body.max_context_length,
singleline: !!request.body.singleline,
max_length: request.body.max_length,
};
if (request.body.gui_settings == false) {