Усилить answer contract и агентный аудит для phase105
This commit is contained in:
+6
-3
@@ -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: [],
|
||||
|
||||
Reference in New Issue
Block a user