Update lorebook-bridge.js

This commit is contained in:
2025-12-09 00:53:52 +08:00
committed by GitHub
parent 57eb6a0aa3
commit 42a3164fb1

View File

@@ -17,8 +17,8 @@ export function getMemoryBookName() {
return `Amily2_Memory_${safeCharName}`; return `Amily2_Memory_${safeCharName}`;
} }
export async function syncToLorebook(tableName, data, indexText, role, headers, rowStatuses, depth = 100) { export async function syncToLorebook(tableName, data, indexText, role, headers, rowStatuses, depth = 100, isIndexConstant = true) {
console.log(`[Amily2-Bridge] 开始同步表格: ${tableName} (Depth: ${depth})`); console.log(`[Amily2-Bridge] 开始同步表格: ${tableName} (Depth: ${depth}, IndexConstant: ${isIndexConstant})`);
await ensureMemoryBook(); await ensureMemoryBook();
@@ -43,9 +43,8 @@ export async function syncToLorebook(tableName, data, indexText, role, headers,
if (specificOrder !== null) { if (specificOrder !== null) {
existingEntry.order = specificOrder; existingEntry.order = specificOrder;
existingEntry.position = 4; // 【V154.2】索引条目强制位置为 4 (@D) existingEntry.position = 4;
} }
// 【V154.4】如果是索引条目强制修正Depth为0
if (specificDepth !== null) { if (specificDepth !== null) {
existingEntry.depth = specificDepth; existingEntry.depth = specificDepth;
} }
@@ -55,7 +54,6 @@ export async function syncToLorebook(tableName, data, indexText, role, headers,
} else { } else {
existingEntry.constant = false; existingEntry.constant = false;
} }
// 【V154.8】回归WorldEditor逻辑仅使用 enabled 属性,移除 disable 属性以交给 helper 处理
existingEntry.enabled = enabled; existingEntry.enabled = enabled;
delete existingEntry.disable; delete existingEntry.disable;
delete existingEntry.disabled; delete existingEntry.disabled;
@@ -67,11 +65,10 @@ export async function syncToLorebook(tableName, data, indexText, role, headers,
keys: keys, keys: keys,
content: content, content: content,
type: type, type: type,
position: 4, // 【V154.2】默认为 4 (@D/D+) position: 4,
order: specificOrder !== null ? specificOrder : depth, // 这里使用的是传入的 8001+ (Order) order: specificOrder !== null ? specificOrder : depth,
depth: specificDepth !== null ? specificDepth : depth, // 【V154.5】普通条目深度也使用传入的 8001+ (实现深层扫描) depth: specificDepth !== null ? specificDepth : depth,
enabled: enabled, // 【V154.8】恢复 enabled 属性 enabled: enabled,
// disable: !enabled, // 移除 disable
exclude_recursion: excludeRecursion, exclude_recursion: excludeRecursion,
prevent_recursion: excludeRecursion, prevent_recursion: excludeRecursion,
excludeRecursion: excludeRecursion, excludeRecursion: excludeRecursion,
@@ -89,7 +86,8 @@ export async function syncToLorebook(tableName, data, indexText, role, headers,
indexContent += `\n<system_note>\n【Amily2-前瞻性预测指令】\n为了实现“提前一轮触发绿灯世界书”的高级记忆回流,请在生成本轮回复时,根据当前剧情走向,**大胆预测并自然提及**下一轮可能出现的索引编码。可自行增加一个标签并使用<!--到-->html注释掉该编码。这将激活系统的预加载机制确保剧情发展的连贯性。\n</system_note>`; indexContent += `\n<system_note>\n【Amily2-前瞻性预测指令】\n为了实现“提前一轮触发绿灯世界书”的高级记忆回流,请在生成本轮回复时,根据当前剧情走向,**大胆预测并自然提及**下一轮可能出现的索引编码。可自行增加一个标签并使用<!--到-->html注释掉该编码。这将激活系统的预加载机制确保剧情发展的连贯性。\n</system_note>`;
} }
processEntry(indexComment, indexKey, indexContent, 'constant', true, true, 0, 0); const indexType = isIndexConstant ? 'constant' : 'selective';
processEntry(indexComment, indexKey, indexContent, indexType, true, true, 0, 0);
} }
data.forEach((row, index) => { data.forEach((row, index) => {