Don't display incomplete sentences in quiet-to-loud prompts if trim is enabled
This commit is contained in:
parent
61908935f5
commit
73eeab9ace
|
@ -3703,7 +3703,7 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject,
|
|||
}
|
||||
|
||||
//Formating
|
||||
const displayIncomplete = type == 'quiet';
|
||||
const displayIncomplete = type === 'quiet' && !quietToLoud;
|
||||
getMessage = cleanUpMessage(getMessage, isImpersonate, isContinue, displayIncomplete);
|
||||
|
||||
if (getMessage.length > 0) {
|
||||
|
|
Loading…
Reference in New Issue