docs: record execution foundation rollout

This commit is contained in:
kris
2026-04-03 00:26:44 +08:00
parent 70e8a13368
commit 519ecb56eb
4 changed files with 33 additions and 1 deletions

View File

@@ -31,7 +31,10 @@ export async function POST(
const { taskId } = await context.params;
try {
const normalized = normalizeRemoteExecutionResult(body);
const normalized = normalizeRemoteExecutionResult({
...body,
status: body.status === "failed" ? "failed" : "completed",
});
const task = await completeMasterAgentTask({
taskId,
deviceId: body.deviceId.trim(),