mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Generate: Ignore bias addition on continue
Continue adds to an existing prompt, so the correct parts of a message are already present. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
@ -2954,7 +2954,7 @@ function getNextMessageId(type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function getBiasStrings(textareaText, type) {
|
export function getBiasStrings(textareaText, type) {
|
||||||
if (type == 'impersonate') {
|
if (type == 'impersonate' || type == 'continue') {
|
||||||
return { messageBias: '', promptBias: '', isUserPromptBias: false };
|
return { messageBias: '', promptBias: '', isUserPromptBias: false };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user