Skip to content

Commit 1659171

Browse files
committed
new task
1 parent 818a04e commit 1659171

File tree

13 files changed

+25
-21
lines changed

13 files changed

+25
-21
lines changed

app/page.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ const fixAssetPaths = (data: TraceData): TraceData => {
1414
...data,
1515
items: data.items.map(item => ({
1616
...item,
17-
screenshot: `${basePath}${item.screenshot.startsWith('/') ? '' : '/'}${item.screenshot}`,
18-
video: `${basePath}${item.video.startsWith('/') ? '' : '/'}${item.video}`
17+
screenshot: item.screenshot.startsWith('http')
18+
? item.screenshot
19+
: `${basePath}${item.screenshot.startsWith('/') ? '' : '/'}${item.screenshot}`,
20+
video: item.video.startsWith('http')
21+
? item.video
22+
: `${basePath}${item.video.startsWith('/') ? '' : '/'}${item.video}`
1923
}))
2024
};
2125
};

public/videos/bofei-task1.mp4

-21.7 MB
Binary file not shown.
-42.6 MB
Binary file not shown.

public/videos/shichenrui-task1.mp4

-4.99 MB
Binary file not shown.

public/videos/shichenrui-task2.mp4

-1.09 MB
Binary file not shown.

public/videos/wechat_calendar.mp4

-10.2 MB
Binary file not shown.
-17.8 MB
Binary file not shown.

public/videos/yapeng-task1.mp4

-6.28 MB
Binary file not shown.

src/data/trace1.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"screenshot": "/screenshots/task1-image0303.jpg",
77
"thought": "Search for 'Grammy Award Best Album of the Year 2025 winner.",
88
"action": "Open Google in the current tab to begin the search for 'Grammy Award Best Album of the Year 2025 winner'",
9-
"video": "/videos/shichenrui-task1.mp4",
9+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task1.mp4",
1010
"timeRange": {
1111
"start": 0,
1212
"end": 18
@@ -17,7 +17,7 @@
1717
"screenshot": "/screenshots/task1-image0860.jpg",
1818
"thought": "Search for details about Beyoncé's album 'Cowboy Carter'",
1919
"action": "Extract details from search results on the Google page regarding Beyoncé's album 'Cowboy Carter'. Extract the concert dates for Beyoncé from the search results displayed. ",
20-
"video": "/videos/shichenrui-task1.mp4",
20+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task1.mp4",
2121
"timeRange": {
2222
"start": 18,
2323
"end": 29
@@ -28,7 +28,7 @@
2828
"screenshot": "/screenshots/task1-image1022.jpg",
2929
"thought": "Open the document to insert the article content.",
3030
"action": "Agent writes the article to the word document.",
31-
"video": "/videos/shichenrui-task1.mp4",
31+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task1.mp4",
3232
"timeRange": {
3333
"start": 29,
3434
"end": 35
@@ -39,7 +39,7 @@
3939
"screenshot": "/screenshots/task1-image1358.jpg",
4040
"thought": "Create a new calendar event for Beyoncé's concert.",
4141
"action": "Task completed.",
42-
"video": "/videos/shichenrui-task1.mp4",
42+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task1.mp4",
4343
"timeRange": {
4444
"start": 35,
4545
"end": 45

src/data/trace2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"screenshot": "/screenshots/task2-image0037.jpg",
77
"thought": "The agent opens the calendar to check any schedule for this friday.",
88
"action": "The agent finds there's indeed a movie night schedule.",
9-
"video": "/videos/shichenrui-task2.mp4",
9+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task2.mp4",
1010
"timeRange": {
1111
"start": 0,
1212
"end": 3
@@ -17,7 +17,7 @@
1717
"screenshot": "/screenshots/task2-image0216.jpg",
1818
"thought": "Search for details for information about latest movies.",
1919
"action": "Extract details from search results on the Google page. ",
20-
"video": "/videos/shichenrui-task2.mp4",
20+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task2.mp4",
2121
"timeRange": {
2222
"start": 3,
2323
"end": 8
@@ -28,7 +28,7 @@
2828
"screenshot": "/screenshots/task2-image0304.jpg",
2929
"thought": " Open the text file to insert the recommendation.",
3030
"action": "Task completed.",
31-
"video": "/videos/shichenrui-task2.mp4",
31+
"video": "https://cua-video-1343655088.cos.ap-hongkong.myqcloud.com/videos/shichenrui-task2.mp4",
3232
"timeRange": {
3333
"start": 8,
3434
"end": 10

0 commit comments

Comments
 (0)