Усилить answer contract и агентный аудит для phase105

This commit is contained in:
2026-05-21 09:00:08 +03:00
parent 9c86407937
commit bbc257fd6c
34 changed files with 1533 additions and 184 deletions
+6 -3
View File
@@ -1008,7 +1008,8 @@ function loadSessionDialog(runId, caseId) {
text: toStringSafe(item.text) ?? "",
created_at: toStringSafe(item.created_at),
trace_id: toStringSafe(item.trace_id),
reply_type: toStringSafe(item.reply_type)
reply_type: toStringSafe(item.reply_type),
debug: item.debug ?? null
}));
const turns = toArray(record.turns)
.map((item) => toRecord(item))
@@ -1076,7 +1077,8 @@ function buildFallbackDialog(run, caseId) {
text: userText,
created_at: null,
trace_id: null,
reply_type: null
reply_type: null,
debug: null
},
{
message_id: null,
@@ -1084,7 +1086,8 @@ function buildFallbackDialog(run, caseId) {
text: assistantSummaryParts.join("\n"),
created_at: null,
trace_id: toStringSafe(targetCase.trace_id),
reply_type: toStringSafe(targetCase.reply_type)
reply_type: toStringSafe(targetCase.reply_type),
debug: null
}
],
decomposition: [],