feat: MVU规则模块+世界书MVU过滤+prompt组装MVU清洗+端到端测试

This commit is contained in:
Youzini-afk
2026-03-27 15:22:00 +08:00
parent a5ab93e701
commit cf4a73e0a8
10 changed files with 1341 additions and 28 deletions

4
llm.js
View File

@@ -256,6 +256,10 @@ function buildPromptExecutionSummary(debugContext = null) {
debugContext.worldInfo && typeof debugContext.worldInfo === "object"
? cloneRuntimeDebugValue(debugContext.worldInfo, {})
: null,
mvu:
debugContext.mvu && typeof debugContext.mvu === "object"
? cloneRuntimeDebugValue(debugContext.mvu, {})
: null,
regexInput: normalizeRegexDebugEntries(debugContext.regexInput),
};
}