From 1ffcfdd168c05d33e764ac111cf9f49be1f7fa31 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 2 Aug 2026 09:56:39 +0800 Subject: [PATCH] test(talk): align browser E2E tool completion --- .../e2e/browser-talk-start-stop.e2e.test.ts | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/ui/src/e2e/browser-talk-start-stop.e2e.test.ts b/ui/src/e2e/browser-talk-start-stop.e2e.test.ts index 19ea6da0fe08..de086c64f74c 100644 --- a/ui/src/e2e/browser-talk-start-stop.e2e.test.ts +++ b/ui/src/e2e/browser-talk-start-stop.e2e.test.ts @@ -509,11 +509,21 @@ describeControlUiE2e("Control UI browser Talk", () => { channel?.dispatchEvent( new MessageEvent("message", { data: JSON.stringify({ - type: "response.function_call_arguments.done", - item_id: "item-camera", - call_id: "call-camera", - name: "describe_view", - arguments: "{}", + type: "response.done", + response: { + id: "response-camera", + status: "completed", + output: [ + { + type: "function_call", + id: "item-camera", + status: "completed", + call_id: "call-camera", + name: "describe_view", + arguments: "{}", + }, + ], + }, }), }), );