mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge pull request #3763 from qvink/empty_message_injection
Fix for generation interceptors messing with WI timed effects
This commit is contained in:
@ -75,6 +75,7 @@ import { Popup, POPUP_RESULT } from './popup.js';
|
||||
import { t } from './i18n.js';
|
||||
import { ToolManager } from './tool-calling.js';
|
||||
import { accountStorage } from './util/AccountStorage.js';
|
||||
import { IGNORE_SYMBOL } from './constants.js';
|
||||
|
||||
export {
|
||||
openai_messages_count,
|
||||
@ -523,6 +524,13 @@ function setOpenAIMessages(chat) {
|
||||
let role = chat[j]['is_user'] ? 'user' : 'assistant';
|
||||
let content = chat[j]['mes'];
|
||||
|
||||
// If this symbol flag is set, completely ignore the message.
|
||||
// This can be used to hide messages without affecting the number of messages in the chat.
|
||||
if (chat[j].extra?.[IGNORE_SYMBOL]) {
|
||||
j++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// 100% legal way to send a message as system
|
||||
if (chat[j].extra?.type === system_message_types.NARRATOR) {
|
||||
role = 'system';
|
||||
|
Reference in New Issue
Block a user