Script: Fix greeting message with continue

Add author's note when continuing the first message of a conversation.

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri 2023-10-09 22:03:37 -04:00 committed by Cohee
parent 3f406dcdf0
commit dbf964e430
1 changed files with 2 additions and 1 deletions

View File

@ -2690,7 +2690,8 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject,
pinExmString = examplesString = mesExamplesArray.join('');
}
if (isContinue) {
// Only add the chat in context if past the greeting message
if (isContinue && chat2.length > 1) {
cyclePrompt = chat2.shift();
}