2024-04-07 04:40:15 +02:00
|
|
|
import { chat, chat_metadata, main_api, getMaxContextSize, getCurrentChatId } from '../script.js';
|
2024-04-01 01:47:56 +02:00
|
|
|
import { timestampToMoment, isDigitsOnly, getStringHash } from './utils.js';
|
2024-01-12 10:47:00 +01:00
|
|
|
import { textgenerationwebui_banned_in_macros } from './textgen-settings.js';
|
|
|
|
import { replaceInstructMacros } from './instruct-mode.js';
|
|
|
|
import { replaceVariableMacros } from './variables.js';
|
2024-01-09 19:23:51 +01:00
|
|
|
|
2024-03-30 11:26:21 +01:00
|
|
|
// Register any macro that you want to leave in the compiled story string
|
|
|
|
Handlebars.registerHelper('trim', () => '{{trim}}');
|
|
|
|
|
2024-04-08 14:10:15 +02:00
|
|
|
/**
|
|
|
|
* Gets a hashed id of the current chat from the metadata.
|
|
|
|
* If no metadata exists, creates a new hash and saves it.
|
|
|
|
* @returns {number} The hashed chat id
|
|
|
|
*/
|
|
|
|
function getChatIdHash() {
|
|
|
|
const cachedIdHash = chat_metadata['chat_id_hash'];
|
|
|
|
|
|
|
|
// If chat_id_hash is not already set, calculate it
|
|
|
|
if (!cachedIdHash) {
|
|
|
|
// Use the main_chat if it's available, otherwise get the current chat ID
|
|
|
|
const chatId = chat_metadata['main_chat'] ?? getCurrentChatId();
|
|
|
|
const chatIdHash = getStringHash(chatId);
|
|
|
|
chat_metadata['chat_id_hash'] = chatIdHash;
|
|
|
|
return chatIdHash;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cachedIdHash;
|
|
|
|
}
|
2024-04-07 00:06:38 +02:00
|
|
|
|
2024-01-09 19:23:51 +01:00
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the ID of the last message in the chat
|
|
|
|
*
|
|
|
|
* Optionally can only choose specific messages, if a filter is provided.
|
|
|
|
*
|
|
|
|
* @param {object} param0 - Optional arguments
|
|
|
|
* @param {boolean} [param0.exclude_swipe_in_propress=true] - Whether a message that is currently being swiped should be ignored
|
|
|
|
* @param {function(object):boolean} [param0.filter] - A filter applied to the search, ignoring all messages that don't match the criteria. For example to only find user messages, etc.
|
|
|
|
* @returns {number|null} The message id, or null if none was found
|
2024-01-09 19:23:51 +01:00
|
|
|
*/
|
2024-04-07 00:06:38 +02:00
|
|
|
export function getLastMessageId({ exclude_swipe_in_propress = true, filter = null } = {}) {
|
|
|
|
for (let i = chat?.length - 1; i >= 0; i--) {
|
|
|
|
let message = chat[i];
|
|
|
|
|
|
|
|
// If ignoring swipes and the message is being swiped, continue
|
|
|
|
// We can check if a message is being swiped by checking whether the current swipe id is not in the list of finished swipes yet
|
|
|
|
if (exclude_swipe_in_propress && message.swipes && message.swipe_id >= message.swipes.length) {
|
|
|
|
continue;
|
|
|
|
}
|
2024-01-09 19:23:51 +01:00
|
|
|
|
2024-04-07 00:06:38 +02:00
|
|
|
// Check if no filter is provided, or if the message passes the filter
|
|
|
|
if (!filter || filter(message)) {
|
|
|
|
return i;
|
|
|
|
}
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
2024-04-07 00:06:38 +02:00
|
|
|
return null;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the ID of the first message included in the context
|
|
|
|
*
|
|
|
|
* @returns {number|null} The ID of the first message in the context
|
2024-01-09 19:23:51 +01:00
|
|
|
*/
|
|
|
|
function getFirstIncludedMessageId() {
|
2024-04-07 00:06:38 +02:00
|
|
|
const index = Number(document.querySelector('.lastInContext')?.getAttribute('mesid'));
|
2024-01-09 19:23:51 +01:00
|
|
|
|
|
|
|
if (!isNaN(index) && index >= 0) {
|
2024-04-07 00:06:38 +02:00
|
|
|
return index;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
2024-04-07 00:06:38 +02:00
|
|
|
return null;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the last message in the chat
|
|
|
|
*
|
|
|
|
* @returns {string} The last message in the chat
|
2024-01-09 19:23:51 +01:00
|
|
|
*/
|
|
|
|
function getLastMessage() {
|
2024-04-07 00:06:38 +02:00
|
|
|
const mid = getLastMessageId();
|
|
|
|
return chat[mid]?.mes ?? '';
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
2024-03-17 01:45:22 +01:00
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the last message from the user
|
|
|
|
*
|
|
|
|
* @returns {string} The last message from the user
|
2024-03-17 01:45:22 +01:00
|
|
|
*/
|
|
|
|
function getLastUserMessage() {
|
2024-04-07 00:06:38 +02:00
|
|
|
const mid = getLastMessageId({ filter: m => m.is_user && !m.is_system });
|
|
|
|
return chat[mid]?.mes ?? '';
|
2024-03-17 01:45:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the last message from the bot
|
|
|
|
*
|
|
|
|
* @returns {string} The last message from the bot
|
2024-03-17 01:45:22 +01:00
|
|
|
*/
|
|
|
|
function getLastCharMessage() {
|
2024-04-07 00:06:38 +02:00
|
|
|
const mid = getLastMessageId({ filter: m => !m.is_user && !m.is_system });
|
|
|
|
return chat[mid]?.mes ?? '';
|
2024-03-17 01:45:22 +01:00
|
|
|
}
|
|
|
|
|
2024-01-09 19:23:51 +01:00
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the 1-based ID (number) of the last swipe
|
|
|
|
*
|
|
|
|
* @returns {number|null} The 1-based ID of the last swipe
|
2024-01-09 19:23:51 +01:00
|
|
|
*/
|
|
|
|
function getLastSwipeId() {
|
2024-04-07 00:06:38 +02:00
|
|
|
// For swipe macro, we are accepting using the message that is currently being swiped
|
|
|
|
const mid = getLastMessageId({ exclude_swipe_in_propress: false });
|
|
|
|
const swipes = chat[mid]?.swipes;
|
|
|
|
return swipes?.length;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-07 00:06:38 +02:00
|
|
|
* Returns the 1-based ID (number) of the current swipe
|
|
|
|
*
|
|
|
|
* @returns {number|null} The 1-based ID of the current swipe
|
2024-01-09 19:23:51 +01:00
|
|
|
*/
|
|
|
|
function getCurrentSwipeId() {
|
2024-04-07 00:06:38 +02:00
|
|
|
// For swipe macro, we are accepting using the message that is currently being swiped
|
|
|
|
const mid = getLastMessageId({ exclude_swipe_in_propress: false });
|
|
|
|
const swipeId = chat[mid]?.swipe_id;
|
|
|
|
return swipeId ? swipeId + 1 : null;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces banned words in macros with an empty string.
|
|
|
|
* Adds them to textgenerationwebui ban list.
|
|
|
|
* @param {string} inText Text to replace banned words in
|
|
|
|
* @returns {string} Text without the "banned" macro
|
|
|
|
*/
|
|
|
|
function bannedWordsReplace(inText) {
|
|
|
|
if (!inText) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
const banPattern = /{{banned "(.*)"}}/gi;
|
|
|
|
|
|
|
|
if (main_api == 'textgenerationwebui') {
|
|
|
|
const bans = inText.matchAll(banPattern);
|
|
|
|
if (bans) {
|
|
|
|
for (const banCase of bans) {
|
|
|
|
console.log('Found banned words in macros: ' + banCase[1]);
|
|
|
|
textgenerationwebui_banned_in_macros.push(banCase[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inText = inText.replaceAll(banPattern, '');
|
|
|
|
return inText;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTimeSinceLastMessage() {
|
|
|
|
const now = moment();
|
|
|
|
|
|
|
|
if (Array.isArray(chat) && chat.length > 0) {
|
|
|
|
let lastMessage;
|
|
|
|
let takeNext = false;
|
|
|
|
|
|
|
|
for (let i = chat.length - 1; i >= 0; i--) {
|
|
|
|
const message = chat[i];
|
|
|
|
|
|
|
|
if (message.is_system) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.is_user && takeNext) {
|
|
|
|
lastMessage = message;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
takeNext = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastMessage?.send_date) {
|
|
|
|
const lastMessageDate = timestampToMoment(lastMessage.send_date);
|
|
|
|
const duration = moment.duration(now.diff(lastMessageDate));
|
|
|
|
return duration.humanize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'just now';
|
|
|
|
}
|
|
|
|
|
|
|
|
function randomReplace(input, emptyListPlaceholder = '') {
|
2024-04-02 01:02:02 +02:00
|
|
|
const randomPattern = /{{random\s?::?([^}]+)}}/gi;
|
2024-01-09 19:23:51 +01:00
|
|
|
|
2024-04-02 01:02:02 +02:00
|
|
|
input = input.replace(randomPattern, (match, listString) => {
|
|
|
|
// Split on either double colons or comma. If comma is the separator, we are also trimming all items.
|
2024-04-02 00:16:25 +02:00
|
|
|
const list = listString.includes('::')
|
2024-04-02 01:02:02 +02:00
|
|
|
? listString.split('::')
|
|
|
|
: listString.split(',').map(item => item.trim());
|
2024-04-02 00:16:25 +02:00
|
|
|
|
2024-03-22 23:57:33 +01:00
|
|
|
if (list.length === 0) {
|
|
|
|
return emptyListPlaceholder;
|
|
|
|
}
|
|
|
|
const rng = new Math.seedrandom('added entropy.', { entropy: true });
|
|
|
|
const randomIndex = Math.floor(rng() * list.length);
|
2024-04-02 01:02:02 +02:00
|
|
|
return list[randomIndex];
|
2024-03-22 23:57:33 +01:00
|
|
|
});
|
|
|
|
return input;
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
2024-04-01 01:47:56 +02:00
|
|
|
function pickReplace(input, rawContent, emptyListPlaceholder = '') {
|
2024-04-02 01:02:02 +02:00
|
|
|
const pickPattern = /{{pick\s?::?([^}]+)}}/gi;
|
2024-04-07 04:40:15 +02:00
|
|
|
|
|
|
|
// We need to have a consistent chat hash, otherwise we'll lose rolls on chat file rename or branch switches
|
2024-04-07 20:37:05 +02:00
|
|
|
// No need to save metadata here - branching and renaming will implicitly do the save for us, and until then loading it like this is consistent
|
2024-04-08 14:10:15 +02:00
|
|
|
const chatIdHash = getChatIdHash();
|
2024-04-01 01:47:56 +02:00
|
|
|
const rawContentHash = getStringHash(rawContent);
|
|
|
|
|
|
|
|
return input.replace(pickPattern, (match, listString, offset) => {
|
2024-04-02 01:02:02 +02:00
|
|
|
// Split on either double colons or comma. If comma is the separator, we are also trimming all items.
|
2024-04-01 01:47:56 +02:00
|
|
|
const list = listString.includes('::')
|
2024-04-02 01:02:02 +02:00
|
|
|
? listString.split('::')
|
|
|
|
: listString.split(',').map(item => item.trim());
|
2024-04-01 01:47:56 +02:00
|
|
|
|
|
|
|
if (list.length === 0) {
|
|
|
|
return emptyListPlaceholder;
|
|
|
|
}
|
|
|
|
|
2024-04-02 01:02:02 +02:00
|
|
|
// We build a hash seed based on: unique chat file, raw content, and the placement inside this content
|
|
|
|
// This allows us to get unique but repeatable picks in nearly all cases
|
2024-04-01 01:47:56 +02:00
|
|
|
const combinedSeedString = `${chatIdHash}-${rawContentHash}-${offset}`;
|
|
|
|
const finalSeed = getStringHash(combinedSeedString);
|
|
|
|
const rng = new Math.seedrandom(finalSeed);
|
|
|
|
const randomIndex = Math.floor(rng() * list.length);
|
2024-04-02 01:02:02 +02:00
|
|
|
return list[randomIndex];
|
2024-04-01 01:47:56 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-01-09 19:23:51 +01:00
|
|
|
function diceRollReplace(input, invalidRollPlaceholder = '') {
|
|
|
|
const rollPattern = /{{roll[ : ]([^}]+)}}/gi;
|
|
|
|
|
|
|
|
return input.replace(rollPattern, (match, matchValue) => {
|
|
|
|
let formula = matchValue.trim();
|
|
|
|
|
|
|
|
if (isDigitsOnly(formula)) {
|
|
|
|
formula = `1d${formula}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = droll.validate(formula);
|
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
console.debug(`Invalid roll formula: ${formula}`);
|
|
|
|
return invalidRollPlaceholder;
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = droll.roll(formula);
|
|
|
|
return new String(result.total);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Substitutes {{macro}} parameters in a string.
|
|
|
|
* @param {string} content - The string to substitute parameters in.
|
2024-01-12 11:19:37 +01:00
|
|
|
* @param {Object<string, *>} env - Map of macro names to the values they'll be substituted with. If the param
|
|
|
|
* values are functions, those functions will be called and their return values are used.
|
2024-01-09 19:23:51 +01:00
|
|
|
* @returns {string} The string with substituted parameters.
|
|
|
|
*/
|
2024-01-12 11:19:37 +01:00
|
|
|
export function evaluateMacros(content, env) {
|
2024-01-09 19:23:51 +01:00
|
|
|
if (!content) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2024-04-01 01:47:56 +02:00
|
|
|
const rawContent = content;
|
|
|
|
|
2024-03-16 00:38:23 +01:00
|
|
|
// Legacy non-macro substitutions
|
|
|
|
content = content.replace(/<USER>/gi, typeof env.user === 'function' ? env.user() : env.user);
|
|
|
|
content = content.replace(/<BOT>/gi, typeof env.char === 'function' ? env.char() : env.char);
|
|
|
|
content = content.replace(/<CHARIFNOTGROUP>/gi, typeof env.group === 'function' ? env.group() : env.group);
|
|
|
|
content = content.replace(/<GROUP>/gi, typeof env.group === 'function' ? env.group() : env.group);
|
|
|
|
|
|
|
|
// Short circuit if there are no macros
|
|
|
|
if (!content.includes('{{')) {
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
2024-01-09 19:23:51 +01:00
|
|
|
content = diceRollReplace(content);
|
2024-04-08 20:05:59 +02:00
|
|
|
content = replaceInstructMacros(content, env);
|
2024-01-09 19:23:51 +01:00
|
|
|
content = replaceVariableMacros(content);
|
|
|
|
content = content.replace(/{{newline}}/gi, '\n');
|
2024-03-30 11:26:21 +01:00
|
|
|
content = content.replace(/\n*{{trim}}\n*/gi, '');
|
2024-04-10 00:04:12 +02:00
|
|
|
content = content.replace(/{{noop}}/gi, '');
|
2024-03-16 00:38:23 +01:00
|
|
|
content = content.replace(/{{input}}/gi, () => String($('#send_textarea').val()));
|
2024-01-09 19:23:51 +01:00
|
|
|
|
2024-01-12 11:19:37 +01:00
|
|
|
// Substitute passed-in variables
|
|
|
|
for (const varName in env) {
|
|
|
|
if (!Object.hasOwn(env, varName)) continue;
|
|
|
|
|
|
|
|
const param = env[varName];
|
2024-01-28 23:58:29 +01:00
|
|
|
content = content.replace(new RegExp(`{{${varName}}}`, 'gi'), param);
|
2024-01-09 19:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
content = content.replace(/{{maxPrompt}}/gi, () => String(getMaxContextSize()));
|
2024-03-16 00:38:23 +01:00
|
|
|
content = content.replace(/{{lastMessage}}/gi, () => getLastMessage());
|
2024-04-07 00:06:38 +02:00
|
|
|
content = content.replace(/{{lastMessageId}}/gi, () => String(getLastMessageId() ?? ''));
|
2024-03-17 01:45:22 +01:00
|
|
|
content = content.replace(/{{lastUserMessage}}/gi, () => getLastUserMessage());
|
|
|
|
content = content.replace(/{{lastCharMessage}}/gi, () => getLastCharMessage());
|
2024-04-07 00:06:38 +02:00
|
|
|
content = content.replace(/{{firstIncludedMessageId}}/gi, () => String(getFirstIncludedMessageId() ?? ''));
|
|
|
|
content = content.replace(/{{lastSwipeId}}/gi, () => String(getLastSwipeId() ?? ''));
|
|
|
|
content = content.replace(/{{currentSwipeId}}/gi, () => String(getCurrentSwipeId() ?? ''));
|
2024-01-09 19:23:51 +01:00
|
|
|
|
|
|
|
content = content.replace(/\{\{\/\/([\s\S]*?)\}\}/gm, '');
|
|
|
|
|
2024-03-16 00:38:23 +01:00
|
|
|
content = content.replace(/{{time}}/gi, () => moment().format('LT'));
|
|
|
|
content = content.replace(/{{date}}/gi, () => moment().format('LL'));
|
|
|
|
content = content.replace(/{{weekday}}/gi, () => moment().format('dddd'));
|
|
|
|
content = content.replace(/{{isotime}}/gi, () => moment().format('HH:mm'));
|
|
|
|
content = content.replace(/{{isodate}}/gi, () => moment().format('YYYY-MM-DD'));
|
2024-01-09 19:23:51 +01:00
|
|
|
|
|
|
|
content = content.replace(/{{datetimeformat +([^}]*)}}/gi, (_, format) => {
|
|
|
|
const formattedTime = moment().format(format);
|
|
|
|
return formattedTime;
|
|
|
|
});
|
|
|
|
content = content.replace(/{{idle_duration}}/gi, () => getTimeSinceLastMessage());
|
|
|
|
content = content.replace(/{{time_UTC([-+]\d+)}}/gi, (_, offset) => {
|
|
|
|
const utcOffset = parseInt(offset, 10);
|
|
|
|
const utcTime = moment().utc().utcOffset(utcOffset).format('LT');
|
|
|
|
return utcTime;
|
|
|
|
});
|
|
|
|
content = bannedWordsReplace(content);
|
|
|
|
content = randomReplace(content);
|
2024-04-01 01:47:56 +02:00
|
|
|
content = pickReplace(content, rawContent);
|
2024-01-09 19:23:51 +01:00
|
|
|
return content;
|
|
|
|
}
|