feat: improve shujuku-compatible extraction and recall input

This commit is contained in:
Youzini-afk
2026-04-11 16:05:06 +08:00
parent 154e553589
commit 322752bb43
15 changed files with 1642 additions and 35 deletions

View File

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