Update SettingsModal.svelte

fixed bad ,
This commit is contained in:
Anthony Cucci 2023-11-29 22:06:37 -05:00 committed by GitHub
parent d180943252
commit 467384e9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@
repeat_penalty: repeat_penalty !== 1.1 ? repeat_penalty : undefined,
top_k: top_k !== 40 ? top_k : undefined,
top_p: top_p !== 0.9 ? top_p : undefined,
num_ctx: num_ctx !== 2048 ? num_ctx : undefined,
num_ctx: num_ctx !== 2048 ? num_ctx : undefined
});
show = false;
}}