Merge pull request #1008 from mweldon/novel-generate-until-sentence

Novel generate until sentence
This commit is contained in:
Cohee
2023-08-24 11:25:56 +03:00
committed by GitHub
3 changed files with 8 additions and 6 deletions

View File

@ -3332,11 +3332,7 @@ function addChatsPreamble(mesSendString) {
}
function addChatsSeparator(mesSendString) {
if (main_api === 'novel') {
return '***\n' + mesSendString;
}
else if (power_user.context.chat_start) {
if (power_user.context.chat_start) {
return power_user.context.chat_start + '\n' + mesSendString;
}