Fix response length override
This commit is contained in:
parent
4d01000751
commit
cf6705baff
|
@ -3033,8 +3033,8 @@ function saveResponseLength(api, responseLength) {
|
||||||
oldValue = oai_settings.openai_max_tokens;
|
oldValue = oai_settings.openai_max_tokens;
|
||||||
oai_settings.openai_max_tokens = responseLength;
|
oai_settings.openai_max_tokens = responseLength;
|
||||||
} else {
|
} else {
|
||||||
oldValue = max_context;
|
oldValue = amount_gen;
|
||||||
max_context = responseLength;
|
amount_gen = responseLength;
|
||||||
}
|
}
|
||||||
return oldValue;
|
return oldValue;
|
||||||
}
|
}
|
||||||
|
@ -3049,7 +3049,7 @@ function restoreResponseLength(api, responseLength) {
|
||||||
if (api === 'openai') {
|
if (api === 'openai') {
|
||||||
oai_settings.openai_max_tokens = responseLength;
|
oai_settings.openai_max_tokens = responseLength;
|
||||||
} else {
|
} else {
|
||||||
max_context = responseLength;
|
amount_gen = responseLength;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue