mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-13 10:00:36 +01:00
deduplicated multi-line stopping strings
This commit is contained in:
parent
26e2b0c8fa
commit
599a912a5a
@ -1832,9 +1832,13 @@ function getStoppingStrings(isImpersonate, addSpace) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (power_user.instruct.enabled) {
|
if (power_user.instruct.enabled) {
|
||||||
addInstructSequence(power_user.instruct.input_sequence);
|
const input_sequence = power_user.instruct.input_sequence;
|
||||||
addInstructSequence(power_user.instruct.output_sequence);
|
const output_sequence = power_user.instruct.output_sequence;
|
||||||
addInstructSequence(power_user.instruct.last_output_sequence);
|
const last_output_sequence = power_user.instruct.last_output_sequence;
|
||||||
|
|
||||||
|
const combined_sequence = `${input_sequence}\n${output_sequence}\n${last_output_sequence}`;
|
||||||
|
|
||||||
|
combined_sequence.split('\n').filter((line, index, self) => self.indexOf(line) === index).forEach(addInstructSequence);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (power_user.custom_stopping_strings) {
|
if (power_user.custom_stopping_strings) {
|
||||||
|
Loading…
Reference in New Issue
Block a user