feat: improve auto scroll ux and edit model title

This commit is contained in:
Yidadaa
2023-08-02 23:35:51 +08:00
parent cbabb9392c
commit b5ef552c25
6 changed files with 27 additions and 16 deletions

View File

@@ -81,7 +81,7 @@ export const ModalConfigValidator = {
return x as ModelType;
},
max_tokens(x: number) {
return limitNumber(x, 0, 32000, 2000);
return limitNumber(x, 0, 100000, 2000);
},
presence_penalty(x: number) {
return limitNumber(x, -2, 2, 0);