This commit is contained in:
GH Action - Upstream Sync
2023-05-17 01:04:03 +00:00
20 changed files with 108 additions and 21 deletions

View File

@@ -502,7 +502,7 @@ export function Chat() {
e.preventDefault();
return;
}
if (shouldSubmit(e)) {
if (shouldSubmit(e) && promptHints.length === 0) {
doSubmit(userInput);
e.preventDefault();
}

View File

@@ -68,8 +68,8 @@ export function ModelConfigList(props: {
></input>
</ListItem>
<ListItem
title={Locale.Settings.PresencePenlty.Title}
subTitle={Locale.Settings.PresencePenlty.SubTitle}
title={Locale.Settings.PresencePenalty.Title}
subTitle={Locale.Settings.PresencePenalty.SubTitle}
>
<InputRange
value={props.modelConfig.presence_penalty?.toFixed(1)}