Substitute macro in Novel preamble

This commit is contained in:
Cohee 2023-09-09 18:19:01 +03:00
parent 7ffe3d21f8
commit 31beb05aa1
1 changed files with 1 additions and 1 deletions

View File

@ -3416,7 +3416,7 @@ function parseTokenCounts(counts, thisPromptBits) {
function addChatsPreamble(mesSendString) {
return main_api === 'novel'
? nai_settings.preamble + '\n' + mesSendString
? substituteParams(nai_settings.preamble) + '\n' + mesSendString
: mesSendString;
}