readded group nudge to end of prompt (needs proper integration into prompt manager)

This commit is contained in:
based 2023-08-20 03:50:51 +10:00
parent 3df439a224
commit 6dc8f01ca7
1 changed files with 6 additions and 0 deletions

View File

@ -747,6 +747,12 @@ function preparePromptsForChatCompletion(Scenario, charPersonality, name2, world
prompts.set(jbReplacement, prompts.index('jailbreak'));
}
// TODO: Integrate Group nudge into the prompt manager properly
if(selected_group) {
let group_nudge = {"role": "system", "content": `[Write the next reply only as ${name2}]`};
openai_msgs.push(group_nudge);
}
// Allow subscribers to manipulate the prompts object
eventSource.emit(event_types.OAI_BEFORE_CHATCOMPLETION, prompts);