This view is limited to 50 files because it contains too many changes.  See the raw diff here.
Files changed (50) hide show
  1. rewards/__init__.py +2 -0
  2. rewards/gmail.py +655 -0
  3. rewards/xiaohongshu.py +614 -0
  4. tasks/2048/create-two-high-tiles.json +1 -1
  5. tasks/2048/get-128-tile.json +1 -1
  6. tasks/2048/get-2048.json +1 -1
  7. tasks/2048/get-256-tile.json +1 -1
  8. tasks/2048/get-32-tile.json +1 -1
  9. tasks/2048/get-512-tile.json +1 -1
  10. tasks/2048/make-first-move.json +1 -1
  11. tasks/2048/move-tiles-right.json +1 -1
  12. tasks/2048/reach-540-sum.json +1 -1
  13. tasks/2048/strategic-32.json +1 -1
  14. tasks/action-tester/must-click.json +1 -1
  15. tasks/action-tester/must-complete-all-actions.json +1 -1
  16. tasks/action-tester/must-double-click.json +1 -1
  17. tasks/action-tester/must-drag.json +1 -1
  18. tasks/action-tester/must-hotkey.json +1 -1
  19. tasks/action-tester/must-middle-click.json +1 -1
  20. tasks/action-tester/must-perform-three-medium-actions.json +1 -1
  21. tasks/action-tester/must-right-click.json +1 -1
  22. tasks/action-tester/must-scroll.json +1 -1
  23. tasks/action-tester/must-type.json +1 -1
  24. tasks/amazon/customer-reviews-that-have-4-stars-and-above.json +0 -0
  25. tasks/amazon/customer-reviews-that-have-5-stars.json +0 -0
  26. tasks/amazon/entering-pod-in-the-search-bar.json +0 -0
  27. tasks/amazon/filter-on-amazon-global-store.json +0 -0
  28. tasks/amazon/filter-on-include-out-of-stock.json +0 -0
  29. tasks/amazon/filter-on-product-condition-renewed.json +0 -0
  30. tasks/amazon/filter-on-products-condition-new.json +0 -0
  31. tasks/amazon/filter-on-products-condition-used.json +0 -0
  32. tasks/amazon/filter-products-based-on-prime-delivery.json +0 -0
  33. tasks/amazon/filter-products-based-on-single-day-delivery.json +0 -0
  34. tasks/amazon/filter-products-on-free-delivery.json +0 -0
  35. tasks/amazon/filter-products-on-two-day-delivery.json +0 -0
  36. tasks/amazon/{filter-products-with-prices-between-99---204.json → filter-products-with-prices-between-99-and-204.json} +0 -0
  37. tasks/amazon/multiple-filters.json +0 -0
  38. tasks/amazon/navigate-from-home-to-product-page.json +0 -0
  39. tasks/amazon/navigate-from-product-page-to-product-page.json +0 -0
  40. tasks/amazon/navigate-from-product-page-to-search-page.json +0 -0
  41. tasks/amazon/navigate-from-search-page-to-product-page.json +1 -1
  42. tasks/amazon/product-prices-up-to-90.json +0 -0
  43. tasks/amazon/products-prices-between-150-and-300.json +0 -0
  44. tasks/amazon/products-with-prices-greater-than-700.json +0 -0
  45. tasks/gmail/changing-categories-in-inbox.json +0 -0
  46. tasks/gmail/collapse-the-sidebar.json +0 -0
  47. tasks/gmail/expand-sidebar.json +0 -0
  48. tasks/gmail/filter-using-search-and-sender.json +0 -0
  49. tasks/gmail/filtering-apple-emails-with-attachment.json +0 -0
  50. tasks/gmail/filtering-your-own-sent-emails.json +0 -0
rewards/__init__.py CHANGED
@@ -18,6 +18,7 @@ from dojo_sdk_core.dojos.rewards.weibo import REWARD_FUNCTIONS_WEIBO
18
  from dojo_sdk_core.dojos.rewards.jd import REWARD_FUNCTIONS_JD
19
  from dojo_sdk_core.dojos.rewards.taobao_mobile import REWARD_FUNCTIONS_TAOBAO_MOBILE
20
  from dojo_sdk_core.dojos.rewards.microsoft_teams import REWARD_FUNCTIONS_MICROSOFT_TEAMS
 
21
 
22
  # Unified registry of all reward functions
23
  REWARD_FUNCTIONS = {
@@ -34,6 +35,7 @@ REWARD_FUNCTIONS = {
34
  **REWARD_FUNCTIONS_JD,
35
  **REWARD_FUNCTIONS_TAOBAO_MOBILE,
36
  **REWARD_FUNCTIONS_MICROSOFT_TEAMS,
 
37
  }
38
 
39
 
 
18
  from dojo_sdk_core.dojos.rewards.jd import REWARD_FUNCTIONS_JD
19
  from dojo_sdk_core.dojos.rewards.taobao_mobile import REWARD_FUNCTIONS_TAOBAO_MOBILE
20
  from dojo_sdk_core.dojos.rewards.microsoft_teams import REWARD_FUNCTIONS_MICROSOFT_TEAMS
21
+ from dojo_sdk_core.dojos.rewards.gmail import REWARD_FUNCTIONS_GMAIL
22
 
23
  # Unified registry of all reward functions
24
  REWARD_FUNCTIONS = {
 
35
  **REWARD_FUNCTIONS_JD,
36
  **REWARD_FUNCTIONS_TAOBAO_MOBILE,
37
  **REWARD_FUNCTIONS_MICROSOFT_TEAMS,
38
+ **REWARD_FUNCTIONS_GMAIL,
39
  }
40
 
41
 
rewards/gmail.py ADDED
@@ -0,0 +1,655 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Reward functions for Gmail app tasks.
3
+ """
4
+
5
+ import logging
6
+ from typing import Any, Dict, Tuple
7
+
8
+ logger = logging.getLogger(__name__)
9
+
10
+
11
+ def _validate_changing_categories_in_inbox(
12
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
13
+ ) -> Tuple[float, str]:
14
+ """Validate that categories were changed in the inbox."""
15
+ if "activeCategory" not in final_state:
16
+ return 0.0, "No activeCategory in final state"
17
+
18
+ logger.debug(f"Running reward function on state: {final_state}")
19
+
20
+ # Check that activeCategory changed from primary to updates
21
+ if final_state.get("activeCategory") == "updates":
22
+ return 1.0, "Successfully changed category to updates"
23
+
24
+ return (
25
+ 0.0,
26
+ "Expected activeCategory to be 'updates', got '{}'".format(
27
+ final_state.get("activeCategory")
28
+ ),
29
+ )
30
+
31
+
32
+ def _validate_collapse_the_sidebar(
33
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
34
+ ) -> Tuple[float, str]:
35
+ """Validate that the sidebar was collapsed."""
36
+ if "sidebarCollapsed" not in final_state:
37
+ return 0.0, "No sidebarCollapsed in final state"
38
+
39
+ logger.debug(f"Running reward function on state: {final_state}")
40
+
41
+ if final_state.get("sidebarCollapsed") is True:
42
+ return 1.0, "Sidebar successfully collapsed"
43
+
44
+ return (
45
+ 0.0,
46
+ "Expected sidebarCollapsed to be True, got '{}'".format(
47
+ final_state.get("sidebarCollapsed")
48
+ ),
49
+ )
50
+
51
+
52
+ def _validate_expand_sidebar(
53
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
54
+ ) -> Tuple[float, str]:
55
+ """Validate that the sidebar was expanded."""
56
+ if "sidebarCollapsed" not in final_state:
57
+ return 0.0, "No sidebarCollapsed in final state"
58
+
59
+ logger.debug(f"Running reward function on state: {final_state}")
60
+
61
+ if final_state.get("sidebarCollapsed") is False:
62
+ return 1.0, "Sidebar successfully expanded"
63
+
64
+ return (
65
+ 0.0,
66
+ "Expected sidebarCollapsed to be False, got '{}'".format(
67
+ final_state.get("sidebarCollapsed")
68
+ ),
69
+ )
70
+
71
+
72
+ def _validate_filter_using_search_and_sender(
73
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
74
+ ) -> Tuple[float, str]:
75
+ """Validate that search filter was applied using search query and sender."""
76
+ if "emails" not in final_state or "selectedEmailId" not in final_state:
77
+ return 0.0, "No emails or selectedEmailId in final state"
78
+
79
+ logger.debug(f"Running reward function on state: {final_state}")
80
+
81
+ selected_email_id = final_state.get("selectedEmailId")
82
+ if not selected_email_id:
83
+ return 0.0, "No email selected"
84
+
85
+ # Find the selected email
86
+ selected_email = next(
87
+ (
88
+ email
89
+ for email in final_state["emails"]
90
+ if email.get("id") == selected_email_id
91
+ ),
92
+ None,
93
+ )
94
+ if not selected_email:
95
+ return 0.0, f"Selected email {selected_email_id} not found in emails"
96
+
97
+ # Check that the email is from GitHub and has the correct subject
98
+ sender_name = selected_email.get("sender", {}).get("name", "")
99
+ subject = selected_email.get("subject", "")
100
+
101
+ if sender_name == "GitHub" and "Your recent order confirmation" in subject:
102
+ return (
103
+ 1.0,
104
+ "Successfully filtered and selected email from GitHub with subject 'Your recent order confirmation'",
105
+ )
106
+
107
+ errors = []
108
+ if sender_name != "GitHub":
109
+ errors.append(f"sender={sender_name} (expected 'GitHub')")
110
+ if "Your recent order confirmation" not in subject:
111
+ errors.append("subject does not contain 'Your recent order confirmation'")
112
+
113
+ return 0.0, "; ".join(errors) if errors else "Email selection validation failed"
114
+
115
+
116
+ def _validate_filtering_apple_emails_with_attachment(
117
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
118
+ ) -> Tuple[float, str]:
119
+ """Validate that Apple emails with attachments were filtered."""
120
+ if "emails" not in final_state or "selectedEmailId" not in final_state:
121
+ return 0.0, "No emails or selectedEmailId in final state"
122
+
123
+ logger.debug(f"Running reward function on state: {final_state}")
124
+
125
+ selected_email_id = final_state.get("selectedEmailId")
126
+ if not selected_email_id:
127
+ return 0.0, "No email selected"
128
+
129
+ # Find the selected email
130
+ selected_email = next(
131
+ (
132
+ email
133
+ for email in final_state["emails"]
134
+ if email.get("id") == selected_email_id
135
+ ),
136
+ None,
137
+ )
138
+ if not selected_email:
139
+ return 0.0, f"Selected email {selected_email_id} not found in emails"
140
+
141
+ # Check email properties
142
+ sender_name = selected_email.get("sender", {}).get("name", "")
143
+ subject = selected_email.get("subject", "")
144
+ body = selected_email.get("body", "")
145
+ expected_text = "I dropped a concise recap in the shared channel so the broader group can keep pace"
146
+
147
+ errors = []
148
+ if "Preview the latest product tour" not in subject:
149
+ errors.append("subject does not contain 'Preview the latest product tour'")
150
+ if sender_name != "Apple":
151
+ errors.append(f"sender={sender_name} (expected 'Apple')")
152
+ if expected_text not in body:
153
+ errors.append(f"body does not contain expected text: '{expected_text}'")
154
+
155
+ if errors:
156
+ return 0.0, "; ".join(errors)
157
+
158
+ return (
159
+ 1.0,
160
+ "Successfully filtered and selected Apple email with attachment containing expected text",
161
+ )
162
+
163
+
164
+ def _validate_filtering_your_own_sent_emails(
165
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
166
+ ) -> Tuple[float, str]:
167
+ """Validate that own sent emails were filtered."""
168
+ if "emails" not in final_state or "selectedEmailId" not in final_state:
169
+ return 0.0, "No emails or selectedEmailId in final state"
170
+
171
+ logger.debug(f"Running reward function on state: {final_state}")
172
+
173
+ selected_email_id = final_state.get("selectedEmailId")
174
+ if not selected_email_id:
175
+ return 0.0, "No email selected"
176
+
177
+ # Find the selected email
178
+ selected_email = next(
179
+ (
180
+ email
181
+ for email in final_state["emails"]
182
+ if email.get("id") == selected_email_id
183
+ ),
184
+ None,
185
+ )
186
+ if not selected_email:
187
+ return 0.0, f"Selected email {selected_email_id} not found in emails"
188
+
189
+ # Check that the email is from Maximilian Falco and has the correct subject
190
+ sender_name = selected_email.get("sender", {}).get("name", "")
191
+ subject = selected_email.get("subject", "")
192
+
193
+ if sender_name == "Maximilian Falco" and "Q4 roadmap outline" in subject:
194
+ return (
195
+ 1.0,
196
+ "Successfully filtered and selected sent email from Maximilian Falco with subject 'Q4 roadmap outline'",
197
+ )
198
+
199
+ errors = []
200
+ if sender_name != "Maximilian Falco":
201
+ errors.append(f"sender={sender_name} (expected 'Maximilian Falco')")
202
+ if "Q4 roadmap outline" not in subject:
203
+ errors.append("subject does not contain 'Q4 roadmap outline'")
204
+
205
+ return 0.0, "; ".join(errors) if errors else "Email selection validation failed"
206
+
207
+
208
+ def _validate_focus_a_single_email(
209
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
210
+ ) -> Tuple[float, str]:
211
+ """Validate that a single email was focused."""
212
+ if "emails" not in final_state or "selectedEmailId" not in final_state:
213
+ return 0.0, "No emails or selectedEmailId in final state"
214
+
215
+ logger.debug(f"Running reward function on state: {final_state}")
216
+
217
+ selected_email_id = final_state.get("selectedEmailId")
218
+ if not selected_email_id:
219
+ return 0.0, "No email selected"
220
+
221
+ # Find the selected email
222
+ selected_email = next(
223
+ (
224
+ email
225
+ for email in final_state["emails"]
226
+ if email.get("id") == selected_email_id
227
+ ),
228
+ None,
229
+ )
230
+ if not selected_email:
231
+ return 0.0, f"Selected email {selected_email_id} not found in emails"
232
+
233
+ # Check that an email is selected (the focus state reflects the email)
234
+ if selected_email_id == "mail-3":
235
+ return 1.0, f"Successfully focused email {selected_email_id}"
236
+
237
+ return (
238
+ 0.0,
239
+ f"Expected selectedEmailId to be 'mail-3', got '{selected_email_id}'",
240
+ )
241
+
242
+
243
+ def _validate_navigate_home(
244
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
245
+ ) -> Tuple[float, str]:
246
+ """Validate that navigation to home (inbox primary category) occurred."""
247
+ if "activeCategory" not in final_state:
248
+ return 0.0, "No activeCategory in final state"
249
+
250
+ logger.debug(f"Running reward function on state: {final_state}")
251
+
252
+ if final_state.get("activeCategory") == "primary":
253
+ return 1.0, "Successfully navigated to inbox primary category"
254
+
255
+ return (
256
+ 0.0,
257
+ f"Expected activeCategory to be 'primary', got '{final_state.get('activeCategory')}'",
258
+ )
259
+
260
+
261
+ def _validate_navigate_to_different_categories_via_sidebar(
262
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
263
+ ) -> Tuple[float, str]:
264
+ """Validate that navigation to Sent category via sidebar occurred."""
265
+ if "emails" not in final_state:
266
+ return 0.0, "No emails in final state"
267
+
268
+ logger.debug(f"Running reward function on state: {final_state}")
269
+
270
+ # Check that we're viewing sent emails (emails where sent=True)
271
+ sent_emails = [
272
+ email for email in final_state["emails"] if email.get("sent") is True
273
+ ]
274
+
275
+ # The task expects to reach Sent category and see different content
276
+ # We verify by checking that sent emails are present and the list is different from inbox
277
+ if len(sent_emails) > 0:
278
+ return (
279
+ 1.0,
280
+ f"Successfully navigated to Sent category via sidebar, showing {len(sent_emails)} sent emails",
281
+ )
282
+
283
+ return 0.0, "No sent emails found in final state"
284
+
285
+
286
+ def _validate_navigate_to_the_starred_category(
287
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
288
+ ) -> Tuple[float, str]:
289
+ """Validate that navigation to starred category occurred."""
290
+ if "shortcuts" not in final_state:
291
+ return 0.0, "No shortcuts in final state"
292
+
293
+ logger.debug(f"Running reward function on state: {final_state}")
294
+
295
+ # Check that the starred shortcut is active
296
+ starred_shortcut = next(
297
+ (s for s in final_state.get("shortcuts", []) if s.get("id") == "starred"), None
298
+ )
299
+
300
+ if not starred_shortcut:
301
+ return 0.0, "Starred shortcut not found in shortcuts"
302
+
303
+ if starred_shortcut.get("isActive") is True:
304
+ return 1.0, "Successfully navigated to starred category via sidebar"
305
+
306
+ return (
307
+ 0.0,
308
+ f"Starred shortcut is not active. isActive={starred_shortcut.get('isActive')}",
309
+ )
310
+
311
+
312
+ def _validate_open_filter_modal(
313
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
314
+ ) -> Tuple[float, str]:
315
+ """Validate that the filter modal was opened."""
316
+ if "isSearchFilterOpen" not in final_state:
317
+ return 0.0, "No isSearchFilterOpen in final state"
318
+
319
+ logger.debug(f"Running reward function on state: {final_state}")
320
+
321
+ if final_state.get("isSearchFilterOpen") is True:
322
+ return 1.0, "Filter modal successfully opened"
323
+
324
+ return (
325
+ 0.0,
326
+ f"Expected isSearchFilterOpen to be True, got '{final_state.get('isSearchFilterOpen')}'",
327
+ )
328
+
329
+
330
+ def _validate_see_sent_emails(
331
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
332
+ ) -> Tuple[float, str]:
333
+ """Validate that sent emails are being viewed."""
334
+ if "emails" not in final_state:
335
+ return 0.0, "No emails in final state"
336
+
337
+ logger.debug(f"Running reward function on state: {final_state}")
338
+
339
+ # Check that all visible emails are sent by Maximilian Falco
340
+ sent_emails = [
341
+ email for email in final_state["emails"] if email.get("sent") is True
342
+ ]
343
+ all_from_user = all(
344
+ email.get("sender", {}).get("name") == "Maximilian Falco"
345
+ for email in sent_emails
346
+ )
347
+
348
+ if len(sent_emails) > 0 and all_from_user:
349
+ return (
350
+ 1.0,
351
+ f"Successfully viewing sent emails, showing {len(sent_emails)} emails from Maximilian Falco",
352
+ )
353
+
354
+ errors = []
355
+ if len(sent_emails) == 0:
356
+ errors.append("No sent emails found")
357
+ if not all_from_user:
358
+ errors.append("Not all emails are from Maximilian Falco")
359
+
360
+ return 0.0, "; ".join(errors) if errors else "Sent emails validation failed"
361
+
362
+
363
+ def _validate_sending_an_email(
364
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
365
+ ) -> Tuple[float, str]:
366
+ """Validate that an email was sent."""
367
+ if "emails" not in final_state:
368
+ return 0.0, "No emails in final state"
369
+
370
+ logger.debug(f"Running reward function on state: {final_state}")
371
+
372
+ # Count sent emails
373
+ initial_sent_count = len(
374
+ [email for email in initial_state.get("emails", []) if email.get("sent")]
375
+ )
376
+ final_sent_count = len(
377
+ [email for email in final_state["emails"] if email.get("sent")]
378
+ )
379
+
380
+ # Check that sent count increased by 1
381
+ if final_sent_count == initial_sent_count + 1:
382
+ # Find the email with subject "Test"
383
+ test_email = next(
384
+ (
385
+ email
386
+ for email in final_state["emails"]
387
+ if email.get("sent") and email.get("subject") == "Test"
388
+ ),
389
+ None,
390
+ )
391
+
392
+ if test_email:
393
+ body = test_email.get("body", "")
394
+ if body == "Test":
395
+ return (
396
+ 1.0,
397
+ f"Successfully sent email. Sent count increased from {initial_sent_count} to {final_sent_count}. Email has subject 'Test' and body 'Test'",
398
+ )
399
+ else:
400
+ return (
401
+ 0.0,
402
+ f"Email with subject 'Test' found but body is '{body}' (expected 'Test')",
403
+ )
404
+
405
+ return 0.0, "Email with subject 'Test' not found in sent emails"
406
+
407
+ return (
408
+ 0.0,
409
+ f"Sent count did not increase by 1. Initial: {initial_sent_count}, Final: {final_sent_count}",
410
+ )
411
+
412
+
413
+ def _validate_snooze_a_single_email(
414
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
415
+ ) -> Tuple[float, str]:
416
+ """Validate that a single email was snoozed."""
417
+ if "emails" not in final_state:
418
+ return 0.0, "No emails in final state"
419
+
420
+ logger.debug(f"Running reward function on state: {final_state}")
421
+
422
+ # Find snoozed emails
423
+ snoozed_emails = [
424
+ email for email in final_state["emails"] if email.get("snoozed") is True
425
+ ]
426
+
427
+ # Check that exactly one email is snoozed, and it's from GitHub with the correct subject
428
+ if len(snoozed_emails) == 1:
429
+ snoozed_email = snoozed_emails[0]
430
+ sender_name = snoozed_email.get("sender", {}).get("name", "")
431
+ subject = snoozed_email.get("subject", "")
432
+
433
+ if sender_name == "GitHub" and "Your recent order confirmation" in subject:
434
+ return (
435
+ 1.0,
436
+ "Successfully snoozed email from GitHub titled 'Your recent order confirmation'",
437
+ )
438
+
439
+ errors = []
440
+ if sender_name != "GitHub":
441
+ errors.append(f"sender={sender_name} (expected 'GitHub')")
442
+ if "Your recent order confirmation" not in subject:
443
+ errors.append("subject does not contain 'Your recent order confirmation'")
444
+ return 0.0, "; ".join(errors)
445
+
446
+ return (
447
+ 0.0,
448
+ "Expected exactly 1 snoozed email, found {}".format(len(snoozed_emails)),
449
+ )
450
+
451
+
452
+ def _validate_starring_a_non_primary_email(
453
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
454
+ ) -> Tuple[float, str]:
455
+ """Validate that a non-primary email was starred."""
456
+ if "emails" not in final_state:
457
+ return 0.0, "No emails in final state"
458
+
459
+ logger.debug(f"Running reward function on state: {final_state}")
460
+
461
+ # Find the GitHub email from updates category that should be starred
462
+ github_email = next(
463
+ (
464
+ email
465
+ for email in final_state["emails"]
466
+ if email.get("sender", {}).get("name") == "GitHub"
467
+ and email.get("category") == "updates"
468
+ ),
469
+ None,
470
+ )
471
+
472
+ if not github_email:
473
+ return 0.0, "GitHub email from updates category not found"
474
+
475
+ # Check that it's starred
476
+ # When an email is starred, it appears in the primary category view even if its category is "updates"
477
+ # This is handled by the UI filtering logic: starred emails show in primary category
478
+ if github_email.get("starred") is True:
479
+ return (
480
+ 1.0,
481
+ "Successfully starred GitHub email from updates category. Email now appears in primary category view (starred emails are visible in primary)",
482
+ )
483
+
484
+ return (
485
+ 0.0,
486
+ f"GitHub email from updates category is not starred. starred={github_email.get('starred')}",
487
+ )
488
+
489
+
490
+ def _validate_starring_an_email(
491
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
492
+ ) -> Tuple[float, str]:
493
+ """Validate that an email was starred."""
494
+ if "emails" not in final_state:
495
+ return 0.0, "No emails in final state"
496
+
497
+ logger.debug(f"Running reward function on state: {final_state}")
498
+
499
+ # Find the Twitter email with subject "Product roadmap highlights"
500
+ target_email = next(
501
+ (
502
+ email
503
+ for email in final_state["emails"]
504
+ if email.get("sender", {}).get("name") == "Twitter"
505
+ and "Product roadmap highlights" in email.get("subject", "")
506
+ ),
507
+ None,
508
+ )
509
+
510
+ if not target_email:
511
+ return (
512
+ 0.0,
513
+ "Email from Twitter with subject 'Product roadmap highlights' not found",
514
+ )
515
+
516
+ # Check that it's starred
517
+ if target_email.get("starred") is True:
518
+ return (
519
+ 1.0,
520
+ "Successfully starred email from Twitter titled 'Product roadmap highlights'",
521
+ )
522
+
523
+ return (
524
+ 0.0,
525
+ f"Email from Twitter is not starred. starred={target_email.get('starred')}",
526
+ )
527
+
528
+
529
+ def _validate_trigger_filter_bar(
530
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
531
+ ) -> Tuple[float, str]:
532
+ """Validate that the filter bar was triggered."""
533
+ # The filter bar appearing is typically indicated by searchFilters being active
534
+ # or isSearchFilterOpen being true, but let's check what the actual state shows
535
+ logger.debug(f"Running reward function on state: {final_state}")
536
+
537
+ # Check if searchFilters exist and are being used
538
+ if "searchFilters" in final_state:
539
+ # The filter bar is triggered when search filters are active
540
+ # This could be indicated by isSearchFilterOpen or by filters having values
541
+ if final_state.get("isSearchFilterOpen") is True:
542
+ return 1.0, "Filter bar successfully triggered and visible"
543
+
544
+ # Alternative: check if search query or filters are set
545
+ if final_state.get("searchQuery") or final_state.get("activeSearchQuery"):
546
+ return 1.0, "Filter bar successfully triggered via search"
547
+
548
+ return (
549
+ 0.0,
550
+ "Filter bar not triggered. isSearchFilterOpen is not True and no search query is set",
551
+ )
552
+
553
+
554
+ def _validate_unsnooze_all_emails(
555
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
556
+ ) -> Tuple[float, str]:
557
+ """Validate that all emails were unsnoozed."""
558
+ if "emails" not in final_state:
559
+ return 0.0, "No emails in final state"
560
+
561
+ logger.debug(f"Running reward function on state: {final_state}")
562
+
563
+ # Check that no emails are snoozed
564
+ snoozed_emails = [
565
+ email for email in final_state["emails"] if email.get("snoozed") is True
566
+ ]
567
+
568
+ if len(snoozed_emails) == 0:
569
+ return 1.0, "Successfully unsnoozed all emails. No snoozed emails remaining"
570
+
571
+ return (
572
+ 0.0,
573
+ f"Expected 0 snoozed emails, found {len(snoozed_emails)}",
574
+ )
575
+
576
+
577
+ def _validate_unstar_all_emails(
578
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
579
+ ) -> Tuple[float, str]:
580
+ """Validate that all emails were unstarred."""
581
+ if "emails" not in final_state:
582
+ return 0.0, "No emails in final state"
583
+
584
+ logger.debug(f"Running reward function on state: {final_state}")
585
+
586
+ # Check that no emails are starred
587
+ starred_emails = [
588
+ email for email in final_state["emails"] if email.get("starred") is True
589
+ ]
590
+
591
+ if len(starred_emails) == 0:
592
+ return 1.0, "Successfully unstarred all emails. No starred emails remaining"
593
+
594
+ return (
595
+ 0.0,
596
+ f"Expected 0 starred emails, found {len(starred_emails)}",
597
+ )
598
+
599
+
600
+ def _validate_unstarring_an_email(
601
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
602
+ ) -> Tuple[float, str]:
603
+ """Validate that an email was unstarred."""
604
+ if "emails" not in final_state:
605
+ return 0.0, "No emails in final state"
606
+
607
+ logger.debug(f"Running reward function on state: {final_state}")
608
+
609
+ # Find the GitHub email
610
+ github_email = next(
611
+ (
612
+ email
613
+ for email in final_state["emails"]
614
+ if email.get("sender", {}).get("name") == "GitHub"
615
+ ),
616
+ None,
617
+ )
618
+
619
+ if not github_email:
620
+ return 0.0, "GitHub email not found"
621
+
622
+ # Check that it's not starred
623
+ if github_email.get("starred") is False:
624
+ # Also verify it's not visible in primary category if it was moved
625
+ return 1.0, "Successfully unstarred GitHub email. Email is no longer starred"
626
+
627
+ return (
628
+ 0.0,
629
+ f"GitHub email is still starred. starred={github_email.get('starred')}",
630
+ )
631
+
632
+
633
+ # Registry of all Gmail reward functions
634
+ REWARD_FUNCTIONS_GMAIL = {
635
+ "_validate_changing_categories_in_inbox": _validate_changing_categories_in_inbox,
636
+ "_validate_collapse_the_sidebar": _validate_collapse_the_sidebar,
637
+ "_validate_expand_sidebar": _validate_expand_sidebar,
638
+ "_validate_filter_using_search_and_sender": _validate_filter_using_search_and_sender,
639
+ "_validate_filtering_apple_emails_with_attachment": _validate_filtering_apple_emails_with_attachment,
640
+ "_validate_filtering_your_own_sent_emails": _validate_filtering_your_own_sent_emails,
641
+ "_validate_focus_a_single_email": _validate_focus_a_single_email,
642
+ "_validate_navigate_home": _validate_navigate_home,
643
+ "_validate_navigate_to_different_categories_via_sidebar": _validate_navigate_to_different_categories_via_sidebar,
644
+ "_validate_navigate_to_the_starred_category": _validate_navigate_to_the_starred_category,
645
+ "_validate_open_filter_modal": _validate_open_filter_modal,
646
+ "_validate_see_sent_emails": _validate_see_sent_emails,
647
+ "_validate_sending_an_email": _validate_sending_an_email,
648
+ "_validate_snooze_a_single_email": _validate_snooze_a_single_email,
649
+ "_validate_starring_a_non_primary_email": _validate_starring_a_non_primary_email,
650
+ "_validate_starring_an_email": _validate_starring_an_email,
651
+ "_validate_trigger_filter_bar": _validate_trigger_filter_bar,
652
+ "_validate_unsnooze_all_emails": _validate_unsnooze_all_emails,
653
+ "_validate_unstar_all_emails": _validate_unstar_all_emails,
654
+ "_validate_unstarring_an_email": _validate_unstarring_an_email,
655
+ }
rewards/xiaohongshu.py CHANGED
@@ -18,6 +18,16 @@ def _find_post(final_state: Dict[str, Any], post_id: str) -> Tuple[Optional[Dict
18
  return None, f"Post with id '{post_id}' not found in final state"
19
 
20
 
 
 
 
 
 
 
 
 
 
 
21
  def _find_user(final_state: Dict[str, Any], user_id: str) -> Tuple[Optional[Dict[str, Any]], str]:
22
  users = final_state.get("users")
23
  if not isinstance(users, list):
@@ -35,6 +45,16 @@ def _get_current_user(final_state: Dict[str, Any]) -> Tuple[Optional[Dict[str, A
35
  return current_user, ""
36
 
37
 
 
 
 
 
 
 
 
 
 
 
38
  def _validate_single_comment(
39
  post: Dict[str, Any], expected_text: str, *, expected_author: Optional[str] = None
40
  ) -> Tuple[bool, str]:
@@ -466,26 +486,620 @@ def _validate_watchfullvideo(initial_state: Dict[str, Any], final_state: Dict[st
466
  return 1.0, "Watched post 2 video through completion"
467
 
468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  # Registry of all Xiaohongshu reward functions
470
  REWARD_FUNCTIONS_XIAOHONGSHU = {
 
 
 
 
 
471
  "_validate_bookmarkpost": _validate_bookmarkpost,
 
 
472
  "_validate_commentontwoseparateposts": _validate_commentontwoseparateposts,
473
  "_validate_commentonvideo": _validate_commentonvideo,
474
  "_validate_comprehensiveuserinteraction": _validate_comprehensiveuserinteraction,
 
475
  "_validate_crossuserengagement": _validate_crossuserengagement,
 
 
 
 
 
 
 
476
  "_validate_follownavigatehome": _validate_follownavigatehome,
 
477
  "_validate_followuser": _validate_followuser,
 
478
  "_validate_like3sequential": _validate_like3sequential,
479
  "_validate_likeandbookmark": _validate_likeandbookmark,
480
  "_validate_likepost": _validate_likepost,
 
 
481
  "_validate_navigateownprofile": _validate_navigateownprofile,
 
 
482
  "_validate_openpostmodal": _validate_openpostmodal,
483
  "_validate_openvideopause": _validate_openvideopause,
 
484
  "_validate_searchandfollowall": _validate_searchandfollowall,
485
  "_validate_search_and_like": _validate_search_and_like,
486
  "_validate_search_input": _validate_search_input,
 
 
487
  "_validate_searchuserandlikeall": _validate_searchuserandlikeall,
 
 
488
  "_validate_unfollowuser": _validate_unfollowuser,
 
489
  "_validate_unlikepost": _validate_unlikepost,
490
  "_validate_watchfullvideo": _validate_watchfullvideo,
 
491
  }
 
18
  return None, f"Post with id '{post_id}' not found in final state"
19
 
20
 
21
+ def _find_comment(post: Dict[str, Any], comment_id: str) -> Tuple[Optional[Dict[str, Any]], str]:
22
+ comments = post.get("comments")
23
+ if not isinstance(comments, list):
24
+ return None, f"Post {post.get('id')} comments array missing"
25
+ for comment in comments:
26
+ if comment.get("id") == comment_id:
27
+ return comment, ""
28
+ return None, f"Comment '{comment_id}' not found on post {post.get('id')}"
29
+
30
+
31
  def _find_user(final_state: Dict[str, Any], user_id: str) -> Tuple[Optional[Dict[str, Any]], str]:
32
  users = final_state.get("users")
33
  if not isinstance(users, list):
 
45
  return current_user, ""
46
 
47
 
48
+ def _find_album_by_name(user: Dict[str, Any], album_name: str) -> Tuple[Optional[Dict[str, Any]], str]:
49
+ albums = user.get("albums")
50
+ if not isinstance(albums, list):
51
+ return None, "currentUser.albums missing or not a list"
52
+ for album in albums:
53
+ if album.get("name") == album_name:
54
+ return album, ""
55
+ return None, f"Album named '{album_name}' not found for current user"
56
+
57
+
58
  def _validate_single_comment(
59
  post: Dict[str, Any], expected_text: str, *, expected_author: Optional[str] = None
60
  ) -> Tuple[bool, str]:
 
486
  return 1.0, "Watched post 2 video through completion"
487
 
488
 
489
+ def _validate_bookmarkalbumcommentreply(
490
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
491
+ ) -> Tuple[float, str]:
492
+ page_requirements = (
493
+ ("page", "album"),
494
+ ("previousPage", "profile"),
495
+ ("profileView", "bookmarks"),
496
+ ("albumOwnerId", "0"),
497
+ )
498
+ for field, expected in page_requirements:
499
+ value = final_state.get(field)
500
+ if value != expected:
501
+ return 0.0, f"{field}={value} expected '{expected}'"
502
+ if not final_state.get("activeAlbumId"):
503
+ return 0.0, "activeAlbumId is missing"
504
+ if final_state.get("activePostId") != "6":
505
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '6'"
506
+
507
+ post, error = _find_post(final_state, "6")
508
+ if not post:
509
+ return 0.0, error
510
+ if post.get("bookmarks") != 1:
511
+ return 0.0, f"Post 6 bookmarks={post.get('bookmarks')} expected 1"
512
+
513
+ comments = post.get("comments")
514
+ if not isinstance(comments, list) or len(comments) < 2:
515
+ return 0.0, "Post 6 does not contain the expected comments"
516
+ nice_comments = [
517
+ comment
518
+ for comment in comments
519
+ if isinstance(comment.get("content"), str) and comment["content"].strip().lower() == "nice"
520
+ ]
521
+ if len(nice_comments) != 2:
522
+ return 0.0, f"Post 6 has {len(nice_comments)} comments with content 'nice', expected 2"
523
+ ids = {comment.get("id") for comment in nice_comments if comment.get("id")}
524
+ has_reply_link = any(comment.get("parentId") in ids for comment in nice_comments)
525
+ if not has_reply_link:
526
+ return 0.0, "Nice comments on post 6 are not linked via parentId as expected"
527
+
528
+ current_user, error = _get_current_user(final_state)
529
+ if not current_user:
530
+ return 0.0, error
531
+ bookmarks = current_user.get("bookmarks")
532
+ if not isinstance(bookmarks, list) or "6" not in bookmarks:
533
+ return 0.0, f"currentUser.bookmarks={bookmarks} expected to include '6'"
534
+
535
+ album, error = _find_album_by_name(current_user, "cats")
536
+ if not album:
537
+ return 0.0, error
538
+ post_ids = album.get("postIds")
539
+ if not isinstance(post_ids, list) or "6" not in post_ids:
540
+ return 0.0, f"Album 'cats' postIds={post_ids} expected to include '6'"
541
+
542
+ return 1.0, "Post 6 bookmarked to new 'cats' album with comment chain and correct navigation state"
543
+
544
+
545
+ def _validate_commentinteractionseries(
546
+ initial_state: Dict[str, Any], final_state: Dict[str, Any]
547
+ ) -> Tuple[float, str]:
548
+ def _comment_contains(
549
+ post: Dict[str, Any], *, expected_parent: str, expected_content: str
550
+ ) -> bool:
551
+ target = expected_content.strip().lower()
552
+ for comment in post.get("comments", []):
553
+ if (
554
+ isinstance(comment.get("content"), str)
555
+ and comment["content"].strip().lower() == target
556
+ and comment.get("parentId") == expected_parent
557
+ ):
558
+ return True
559
+ return False
560
+
561
+ post1, error = _find_post(final_state, "1")
562
+ if not post1:
563
+ return 0.0, error
564
+ for cid in ("c1", "c1-1"):
565
+ comment, error = _find_comment(post1, cid)
566
+ if not comment:
567
+ return 0.0, error
568
+ liked = comment.get("likedBy")
569
+ if not isinstance(liked, list) or "0" not in liked:
570
+ return 0.0, f"Comment {cid} likedBy={liked} expected to include '0'"
571
+ if not _comment_contains(post1, expected_parent="c1-1", expected_content="nice"):
572
+ return 0.0, "Post 1 missing reply 'nice' to comment c1-1"
573
+
574
+ post2, error = _find_post(final_state, "2")
575
+ if not post2:
576
+ return 0.0, error
577
+ comment, error = _find_comment(post2, "c2")
578
+ if not comment:
579
+ return 0.0, error
580
+ liked = comment.get("likedBy")
581
+ if not isinstance(liked, list) or "0" not in liked:
582
+ return 0.0, f"Comment c2 likedBy={liked} expected to include '0'"
583
+ if not _comment_contains(post2, expected_parent="c2", expected_content="nice2"):
584
+ return 0.0, "Post 2 missing reply 'nice2' to comment c2"
585
+
586
+ post3, error = _find_post(final_state, "3")
587
+ if not post3:
588
+ return 0.0, error
589
+ comment, error = _find_comment(post3, "c3")
590
+ if not comment:
591
+ return 0.0, error
592
+ liked = comment.get("likedBy")
593
+ if not isinstance(liked, list) or "0" not in liked:
594
+ return 0.0, f"Comment c3 likedBy={liked} expected to include '0'"
595
+ if not _comment_contains(post3, expected_parent="c3", expected_content="nice3"):
596
+ return 0.0, "Post 3 missing reply 'nice3' to comment c3"
597
+
598
+ if final_state.get("page") != "explore":
599
+ return 0.0, f"page={final_state.get('page')} expected 'explore' after completing replies"
600
+
601
+ return 1.0, "Liked and replied to the required comment series across posts 1-3"
602
+
603
+
604
+ def _validate_darkmodenotiflike(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
605
+ if final_state.get("themeMode") != "dark":
606
+ return 0.0, f"themeMode={final_state.get('themeMode')} expected 'dark'"
607
+ if final_state.get("page") != "explore" or final_state.get("previousPage") != "notifications":
608
+ return 0.0, (
609
+ f"page={final_state.get('page')} previousPage={final_state.get('previousPage')} expected explore/notifications"
610
+ )
611
+ post, error = _find_post(final_state, "1")
612
+ if not post:
613
+ return 0.0, error
614
+ comment, error = _find_comment(post, "c1")
615
+ if not comment:
616
+ return 0.0, error
617
+ liked = comment.get("likedBy")
618
+ if not isinstance(liked, list) or "0" not in liked:
619
+ return 0.0, f"Comment c1 likedBy={liked} expected to include '0'"
620
+ return 1.0, "Enabled dark mode, handled notification, and liked the mention"
621
+
622
+
623
+ def _validate_findmention(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
624
+ if final_state.get("page") != "notifications" or final_state.get("previousPage") != "explore":
625
+ return 0.0, (
626
+ f"page={final_state.get('page')} previousPage={final_state.get('previousPage')} expected notifications/explore"
627
+ )
628
+ if final_state.get("activePostId") != "1":
629
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '1'"
630
+ if final_state.get("highlightCommentId") != "c1":
631
+ return 0.0, f"highlightCommentId={final_state.get('highlightCommentId')} expected 'c1'"
632
+ return 1.0, "Navigated to notifications and opened the mention thread"
633
+
634
+
635
+ def _validate_follownewfollower(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
636
+ current_user, error = _get_current_user(final_state)
637
+ if not current_user:
638
+ return 0.0, error
639
+ following = current_user.get("following")
640
+ if not isinstance(following, list) or "15" not in following:
641
+ return 0.0, f"currentUser.following={following} expected to include '15'"
642
+
643
+ new_user, error = _find_user(final_state, "15")
644
+ if not new_user:
645
+ return 0.0, error
646
+ followers = new_user.get("followers")
647
+ if not isinstance(followers, list) or "0" not in followers:
648
+ return 0.0, f"User 15 followers={followers} expected to include '0'"
649
+
650
+ if final_state.get("page") != "notifications" or final_state.get("previousPage") != "explore":
651
+ return 0.0, (
652
+ f"page={final_state.get('page')} previousPage={final_state.get('previousPage')} expected notifications/explore"
653
+ )
654
+ return 1.0, "Followed the new follower from notifications"
655
+
656
+
657
+ def _validate_replychain(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
658
+ post, error = _find_post(final_state, "1")
659
+ if not post:
660
+ return 0.0, error
661
+ comments = post.get("comments")
662
+ if not isinstance(comments, list):
663
+ return 0.0, "Post 1 comments array missing"
664
+ if len(comments) != 3:
665
+ return 0.0, f"Post 1 has {len(comments)} comments, expected 3 after reply"
666
+ has_nested_reply = any(
667
+ isinstance(comment.get("content"), str)
668
+ and comment["content"].strip().lower() == "nice"
669
+ and comment.get("parentId") == "c1-1"
670
+ for comment in comments
671
+ )
672
+ if not has_nested_reply:
673
+ return 0.0, "Failed to find reply with content 'nice' pointing to comment c1-1"
674
+ return 1.0, "Submitted nested reply to comment c1-1"
675
+
676
+
677
+ def _validate_searchownprofilereply(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
678
+ if final_state.get("page") != "profile" or final_state.get("previousPage") != "search":
679
+ return 0.0, (
680
+ f"page={final_state.get('page')} previousPage={final_state.get('previousPage')} expected profile/search"
681
+ )
682
+ if final_state.get("profileUserId") != "0":
683
+ return 0.0, f"profileUserId={final_state.get('profileUserId')} expected '0'"
684
+ if final_state.get("activePostId") != "2":
685
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '2'"
686
+
687
+ post, error = _find_post(final_state, "2")
688
+ if not post:
689
+ return 0.0, error
690
+ comments = post.get("comments")
691
+ if not isinstance(comments, list) or len(comments) < 2:
692
+ return 0.0, "Post 2 is missing expected reply comments"
693
+ has_reply = any(
694
+ isinstance(comment.get("content"), str)
695
+ and comment["content"].strip().lower() == "nice"
696
+ and comment.get("parentId") == "c2"
697
+ for comment in comments
698
+ )
699
+ if not has_reply:
700
+ return 0.0, "Post 2 is missing reply 'nice' to comment c2"
701
+ return 1.0, "Replied to comment on own profile after search"
702
+
703
+
704
+ def _validate_albumview(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
705
+ for field, expected in (("page", "profile"), ("previousPage", "explore"), ("profileView", "bookmarks")):
706
+ value = final_state.get(field)
707
+ if value != expected:
708
+ return 0.0, f"{field}={value} expected '{expected}'"
709
+ return 1.0, "Profile bookmarks view is visible from album grid"
710
+
711
+
712
+ def _validate_backpage(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
713
+ if final_state.get("page") != "profile":
714
+ return 0.0, f"page={final_state.get('page')} expected 'profile'"
715
+ if final_state.get("previousPage") != "album":
716
+ return 0.0, f"previousPage={final_state.get('previousPage')} expected 'album'"
717
+ if final_state.get("profileUserId") != "0":
718
+ return 0.0, f"profileUserId={final_state.get('profileUserId')} expected '0'"
719
+ return 1.0, "Returned to profile from album view using back navigation"
720
+
721
+
722
+ def _validate_bookmarkalbum(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
723
+ for pid in ("1", "2"):
724
+ post, error = _find_post(final_state, pid)
725
+ if not post:
726
+ return 0.0, error
727
+ if post.get("bookmarks") != 1:
728
+ return 0.0, f"Post {pid} bookmarks={post.get('bookmarks')} expected 1"
729
+
730
+ current_user, error = _get_current_user(final_state)
731
+ if not current_user:
732
+ return 0.0, error
733
+ ok, err = _check_exact_list(current_user.get("bookmarks"), ("1", "2"), "currentUser.bookmarks")
734
+ if not ok:
735
+ return 0.0, err
736
+
737
+ album, error = _find_album_by_name(current_user, "yoo")
738
+ if not album:
739
+ return 0.0, error
740
+ ok, err = _check_exact_list(album.get("postIds"), ("2",), "Album 'yoo' postIds")
741
+ if not ok:
742
+ return 0.0, err
743
+
744
+ return 1.0, "Bookmarked posts 1 and 2 and added post 2 to album 'yoo'"
745
+
746
+
747
+ def _validate_bookmarkandlike(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
748
+ required_fields = (
749
+ ("page", "profile"),
750
+ ("previousPage", "explore"),
751
+ ("profileView", "bookmarks"),
752
+ ("profileUserId", "0"),
753
+ )
754
+ for field, expected in required_fields:
755
+ value = final_state.get(field)
756
+ if value != expected:
757
+ return 0.0, f"{field}={value} expected '{expected}'"
758
+
759
+ if final_state.get("activePostId") != "1":
760
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '1'"
761
+
762
+ post, error = _find_post(final_state, "1")
763
+ if not post:
764
+ return 0.0, error
765
+ if post.get("likes") != 1 or post.get("bookmarks") != 1:
766
+ return 0.0, (
767
+ f"Post 1 likes/bookmarks mismatch. likes={post.get('likes')} bookmarks={post.get('bookmarks')} expected 1/1"
768
+ )
769
+
770
+ current_user, error = _get_current_user(final_state)
771
+ if not current_user:
772
+ return 0.0, error
773
+ ok, err = _check_exact_list(current_user.get("bookmarks"), ("1",), "currentUser.bookmarks")
774
+ if not ok:
775
+ return 0.0, err
776
+ ok, err = _check_exact_list(current_user.get("likedPosts"), ("1",), "currentUser.likedPosts")
777
+ if not ok:
778
+ return 0.0, err
779
+
780
+ return 1.0, "Bookmarked and liked post 1 while viewing profile bookmarks"
781
+
782
+
783
+ def _validate_bookmarksview(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
784
+ if final_state.get("page") != "profile":
785
+ return 0.0, f"page={final_state.get('page')} expected 'profile'"
786
+ if final_state.get("previousPage") != "explore":
787
+ return 0.0, f"previousPage={final_state.get('previousPage')} expected 'explore'"
788
+ if final_state.get("profileView") != "bookmarks":
789
+ return 0.0, f"profileView={final_state.get('profileView')} expected 'bookmarks'"
790
+ if final_state.get("profileUserId") != "0":
791
+ return 0.0, f"profileUserId={final_state.get('profileUserId')} expected '0'"
792
+ return 1.0, "Viewing current user's bookmarks"
793
+
794
+
795
+ def _validate_createalbumadd(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
796
+ for pid in ("1", "2"):
797
+ post, error = _find_post(final_state, pid)
798
+ if not post:
799
+ return 0.0, error
800
+ if post.get("bookmarks") != 1:
801
+ return 0.0, f"Post {pid} bookmarks={post.get('bookmarks')} expected 1"
802
+
803
+ current_user, error = _get_current_user(final_state)
804
+ if not current_user:
805
+ return 0.0, error
806
+ ok, err = _check_exact_list(current_user.get("bookmarks"), ("1", "2"), "currentUser.bookmarks")
807
+ if not ok:
808
+ return 0.0, err
809
+
810
+ album, error = _find_album_by_name(current_user, "yo")
811
+ if not album:
812
+ return 0.0, error
813
+ post_ids = album.get("postIds")
814
+ if not isinstance(post_ids, list) or sorted(post_ids) != ["1", "2"]:
815
+ return 0.0, f"Album 'yo' postIds={post_ids} expected ['1', '2']"
816
+
817
+ return 1.0, "Created album 'yo' containing bookmarked posts 1 and 2"
818
+
819
+
820
+ def _validate_darkmode(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
821
+ if final_state.get("themeMode") != "dark":
822
+ return 0.0, f"themeMode={final_state.get('themeMode')} expected 'dark'"
823
+ return 1.0, "Theme set to dark mode"
824
+
825
+
826
+ def _validate_darkmodefilter(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
827
+ if final_state.get("themeMode") != "dark":
828
+ return 0.0, f"themeMode={final_state.get('themeMode')} expected 'dark'"
829
+ if final_state.get("feedFilter") != "校园日常":
830
+ return 0.0, f"feedFilter={final_state.get('feedFilter')} expected '校园日常'"
831
+ return 1.0, "Dark mode enabled and feed filter set to 校园日常"
832
+
833
+
834
+ def _validate_darkmodelike(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
835
+ field_expectations = (("page", "explore"), ("previousPage", "explore"), ("themeMode", "dark"))
836
+ for field, expected in field_expectations:
837
+ value = final_state.get(field)
838
+ if value != expected:
839
+ return 0.0, f"{field}={value} expected '{expected}'"
840
+
841
+ post, error = _find_post(final_state, "1")
842
+ if not post:
843
+ return 0.0, error
844
+ if post.get("likes") != 1:
845
+ return 0.0, f"Post 1 likes={post.get('likes')} expected 1"
846
+
847
+ current_user, error = _get_current_user(final_state)
848
+ if not current_user:
849
+ return 0.0, error
850
+ likes = current_user.get("likedPosts")
851
+ if not isinstance(likes, list) or "1" not in likes:
852
+ return 0.0, f"currentUser.likedPosts={likes} expected to include '1'"
853
+
854
+ return 1.0, "Liked post 1 while dark mode remained enabled"
855
+
856
+
857
+ def _validate_darkmodesearchwatch(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
858
+ expected = (("page", "search"), ("previousPage", "explore"), ("searchQuery", "oo"), ("themeMode", "dark"))
859
+ for field, value in expected:
860
+ current = final_state.get(field)
861
+ if current != value:
862
+ return 0.0, f"{field}={current} expected '{value}'"
863
+ if final_state.get("activePostId") != "1":
864
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '1'"
865
+ return 1.0, "Searched for 'oo', switched to dark mode, and watched post 1"
866
+
867
+
868
+ def _validate_filtercommentprofiledark(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
869
+ expectations = (
870
+ ("page", "profile"),
871
+ ("previousPage", "explore"),
872
+ ("feedFilter", "萌宠日常"),
873
+ ("profileUserId", "0"),
874
+ ("themeMode", "dark"),
875
+ )
876
+ for field, expected in expectations:
877
+ value = final_state.get(field)
878
+ if value != expected:
879
+ return 0.0, f"{field}={value} expected '{expected}'"
880
+
881
+ post, error = _find_post(final_state, "2")
882
+ if not post:
883
+ return 0.0, error
884
+ ok, err = _validate_single_comment(post, "nice")
885
+ if not ok:
886
+ return 0.0, err
887
+
888
+ return 1.0, "Filtered feed, commented on post 2, returned to profile, and enabled dark mode"
889
+
890
+
891
+ def _validate_lightmode(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
892
+ if final_state.get("themeMode") != "light":
893
+ return 0.0, f"themeMode={final_state.get('themeMode')} expected 'light'"
894
+ return 1.0, "Theme set to light mode"
895
+
896
+
897
+ def _validate_likesearchfollowdark(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
898
+ expectations = (
899
+ ("page", "search"),
900
+ ("previousPage", "explore"),
901
+ ("searchQuery", "妹妹宝"),
902
+ ("themeMode", "dark"),
903
+ ("searchFilter", "用户"),
904
+ )
905
+ for field, expected in expectations:
906
+ value = final_state.get(field)
907
+ if value != expected:
908
+ return 0.0, f"{field}={value} expected '{expected}'"
909
+
910
+ post, error = _find_post(final_state, "1")
911
+ if not post:
912
+ return 0.0, error
913
+ if post.get("likes") != 1:
914
+ return 0.0, f"Post 1 likes={post.get('likes')} expected 1"
915
+
916
+ user2, error = _find_user(final_state, "2")
917
+ if not user2:
918
+ return 0.0, error
919
+ followers = user2.get("followers")
920
+ if not isinstance(followers, list) or followers != ["0"]:
921
+ return 0.0, f"User 2 followers={followers} expected ['0']"
922
+
923
+ current_user, error = _get_current_user(final_state)
924
+ if not current_user:
925
+ return 0.0, error
926
+ following = current_user.get("following")
927
+ if not isinstance(following, list) or "2" not in following:
928
+ return 0.0, f"currentUser.following={following} expected to include '2'"
929
+
930
+ return 1.0, "Liked a post, searched for user 妹妹宝, followed them, and enabled dark mode"
931
+
932
+
933
+ def _validate_likesview(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
934
+ if final_state.get("page") != "profile":
935
+ return 0.0, f"page={final_state.get('page')} expected 'profile'"
936
+ if final_state.get("previousPage") != "explore":
937
+ return 0.0, f"previousPage={final_state.get('previousPage')} expected 'explore'"
938
+ if final_state.get("profileView") != "likes":
939
+ return 0.0, f"profileView={final_state.get('profileView')} expected 'likes'"
940
+ if final_state.get("profileUserId") != "0":
941
+ return 0.0, f"profileUserId={final_state.get('profileUserId')} expected '0'"
942
+ return 1.0, "Viewing current user's liked posts"
943
+
944
+
945
+ def _validate_openalbumwatchvideo(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
946
+ if final_state.get("page") != "album":
947
+ return 0.0, f"page={final_state.get('page')} expected 'album'"
948
+ if final_state.get("previousPage") != "profile":
949
+ return 0.0, f"previousPage={final_state.get('previousPage')} expected 'profile'"
950
+ if not final_state.get("activeAlbumId"):
951
+ return 0.0, "activeAlbumId missing or empty"
952
+ if final_state.get("activePostId") != "1":
953
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected '1'"
954
+ if final_state.get("isVideoPaused") is not True:
955
+ return 0.0, "Video is not paused after watching album video"
956
+ if final_state.get("isVideoEnded") is not True:
957
+ return 0.0, "isVideoEnded is not True after watching album video"
958
+ return 1.0, "Opened an album, played post 1, and watched it to completion"
959
+
960
+
961
+ def _validate_openanalbum(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
962
+ if final_state.get("page") != "album":
963
+ return 0.0, f"page={final_state.get('page')} expected 'album'"
964
+ if final_state.get("previousPage") != "profile":
965
+ return 0.0, f"previousPage={final_state.get('previousPage')} expected 'profile'"
966
+ if not final_state.get("activeAlbumId"):
967
+ return 0.0, "activeAlbumId missing or empty"
968
+ return 1.0, "Opened an album from the profile grid"
969
+
970
+
971
+ def _validate_removebookmarksinalbum(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
972
+ current_user, error = _get_current_user(final_state)
973
+ if not current_user:
974
+ return 0.0, error
975
+
976
+ bookmarks = current_user.get("bookmarks")
977
+ if not isinstance(bookmarks, list) or bookmarks:
978
+ return 0.0, f"currentUser.bookmarks={bookmarks} expected empty list"
979
+
980
+ album, error = _find_album_by_name(current_user, "yo")
981
+ if not album:
982
+ return 0.0, error
983
+ post_ids = album.get("postIds")
984
+ if not isinstance(post_ids, list) or post_ids:
985
+ return 0.0, f"Album 'yo' postIds={post_ids} expected empty list"
986
+
987
+ return 1.0, "Removed all bookmarked posts from album 'yo'"
988
+
989
+
990
+ def _validate_searchlikeunbookmark(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
991
+ expectations = (
992
+ ("page", "profile"),
993
+ ("previousPage", "search"),
994
+ ("profileView", "bookmarks"),
995
+ ("profileUserId", "0"),
996
+ )
997
+ for field, expected in expectations:
998
+ value = final_state.get(field)
999
+ if value != expected:
1000
+ return 0.0, f"{field}={value} expected '{expected}'"
1001
+
1002
+ if final_state.get("activePostId") is not None:
1003
+ return 0.0, f"activePostId={final_state.get('activePostId')} expected None"
1004
+
1005
+ post, error = _find_post(final_state, "1")
1006
+ if not post:
1007
+ return 0.0, error
1008
+ if post.get("likes") != 1:
1009
+ return 0.0, f"Post 1 likes={post.get('likes')} expected 1"
1010
+ if post.get("bookmarks") not in (0, None):
1011
+ return 0.0, f"Post 1 bookmarks={post.get('bookmarks')} expected 0"
1012
+
1013
+ current_user, error = _get_current_user(final_state)
1014
+ if not current_user:
1015
+ return 0.0, error
1016
+ bookmarks = current_user.get("bookmarks")
1017
+ if not isinstance(bookmarks, list) or bookmarks:
1018
+ return 0.0, f"currentUser.bookmarks={bookmarks} expected empty list"
1019
+ likes = current_user.get("likedPosts")
1020
+ if not isinstance(likes, list) or "1" not in likes:
1021
+ return 0.0, f"currentUser.likedPosts={likes} expected to include '1'"
1022
+
1023
+ return 1.0, "Searched, liked post 1, and then removed it from bookmarks"
1024
+
1025
+
1026
+ def _validate_setfilter(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
1027
+ if final_state.get("feedFilter") != "OOTD":
1028
+ return 0.0, f"feedFilter={final_state.get('feedFilter')} expected 'OOTD'"
1029
+ return 1.0, "Feed filter set to OOTD"
1030
+
1031
+
1032
+ def _validate_systemtheme(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
1033
+ if final_state.get("themeMode") != "system":
1034
+ return 0.0, f"themeMode={final_state.get('themeMode')} expected 'system'"
1035
+ return 1.0, "Theme set to follow system setting"
1036
+
1037
+
1038
+ def _validate_unlikecurrentuserlikes(initial_state: Dict[str, Any], final_state: Dict[str, Any]) -> Tuple[float, str]:
1039
+ current_user, error = _get_current_user(final_state)
1040
+ if not current_user:
1041
+ return 0.0, error
1042
+ liked = current_user.get("likedPosts")
1043
+ if not isinstance(liked, list) or liked:
1044
+ return 0.0, f"currentUser.likedPosts={liked} expected empty list"
1045
+
1046
+ post, error = _find_post(final_state, "1")
1047
+ if not post:
1048
+ return 0.0, error
1049
+ if post.get("likes") not in (0, None):
1050
+ return 0.0, f"Post 1 likes={post.get('likes')} expected 0"
1051
+
1052
+ return 1.0, "Cleared current user's liked posts by unliking post 1"
1053
+
1054
+
1055
  # Registry of all Xiaohongshu reward functions
1056
  REWARD_FUNCTIONS_XIAOHONGSHU = {
1057
+ "_validate_albumview": _validate_albumview,
1058
+ "_validate_backpage": _validate_backpage,
1059
+ "_validate_bookmarkalbum": _validate_bookmarkalbum,
1060
+ "_validate_bookmarkalbumcommentreply": _validate_bookmarkalbumcommentreply,
1061
+ "_validate_bookmarkandlike": _validate_bookmarkandlike,
1062
  "_validate_bookmarkpost": _validate_bookmarkpost,
1063
+ "_validate_bookmarksview": _validate_bookmarksview,
1064
+ "_validate_commentinteractionseries": _validate_commentinteractionseries,
1065
  "_validate_commentontwoseparateposts": _validate_commentontwoseparateposts,
1066
  "_validate_commentonvideo": _validate_commentonvideo,
1067
  "_validate_comprehensiveuserinteraction": _validate_comprehensiveuserinteraction,
1068
+ "_validate_createalbumadd": _validate_createalbumadd,
1069
  "_validate_crossuserengagement": _validate_crossuserengagement,
1070
+ "_validate_darkmodenotiflike": _validate_darkmodenotiflike,
1071
+ "_validate_darkmode": _validate_darkmode,
1072
+ "_validate_darkmodefilter": _validate_darkmodefilter,
1073
+ "_validate_darkmodelike": _validate_darkmodelike,
1074
+ "_validate_darkmodesearchwatch": _validate_darkmodesearchwatch,
1075
+ "_validate_findmention": _validate_findmention,
1076
+ "_validate_filtercommentprofiledark": _validate_filtercommentprofiledark,
1077
  "_validate_follownavigatehome": _validate_follownavigatehome,
1078
+ "_validate_follownewfollower": _validate_follownewfollower,
1079
  "_validate_followuser": _validate_followuser,
1080
+ "_validate_lightmode": _validate_lightmode,
1081
  "_validate_like3sequential": _validate_like3sequential,
1082
  "_validate_likeandbookmark": _validate_likeandbookmark,
1083
  "_validate_likepost": _validate_likepost,
1084
+ "_validate_likesearchfollowdark": _validate_likesearchfollowdark,
1085
+ "_validate_likesview": _validate_likesview,
1086
  "_validate_navigateownprofile": _validate_navigateownprofile,
1087
+ "_validate_openalbumwatchvideo": _validate_openalbumwatchvideo,
1088
+ "_validate_openanalbum": _validate_openanalbum,
1089
  "_validate_openpostmodal": _validate_openpostmodal,
1090
  "_validate_openvideopause": _validate_openvideopause,
1091
+ "_validate_replychain": _validate_replychain,
1092
  "_validate_searchandfollowall": _validate_searchandfollowall,
1093
  "_validate_search_and_like": _validate_search_and_like,
1094
  "_validate_search_input": _validate_search_input,
1095
+ "_validate_searchownprofilereply": _validate_searchownprofilereply,
1096
+ "_validate_searchlikeunbookmark": _validate_searchlikeunbookmark,
1097
  "_validate_searchuserandlikeall": _validate_searchuserandlikeall,
1098
+ "_validate_setfilter": _validate_setfilter,
1099
+ "_validate_systemtheme": _validate_systemtheme,
1100
  "_validate_unfollowuser": _validate_unfollowuser,
1101
+ "_validate_unlikecurrentuserlikes": _validate_unlikecurrentuserlikes,
1102
  "_validate_unlikepost": _validate_unlikepost,
1103
  "_validate_watchfullvideo": _validate_watchfullvideo,
1104
+ "_validate_removebookmarksinalbum": _validate_removebookmarksinalbum,
1105
  }
tasks/2048/create-two-high-tiles.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Create Two 128 Tiles",
5
  "description": "Get at least two tiles with value 128 or higher on the board",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [64, 64, 0, 0, 32, 32, 0, 0, 16, 16, 0, 0, 16, 4, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create at least two tiles with value 128 or higher on the board. You'll need to combine smaller tiles strategically to reach this goal.\", \"success_criteria\": \"The board must contain at least two tiles with value 128 or higher.\"}",
10
  "reward_function": "_validate_create_two_high_tiles",
 
4
  "name": "Create Two 128 Tiles",
5
  "description": "Get at least two tiles with value 128 or higher on the board",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [64, 64, 0, 0, 32, 32, 0, 0, 16, 16, 0, 0, 16, 4, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create at least two tiles with value 128 or higher on the board. You'll need to combine smaller tiles strategically to reach this goal.\", \"success_criteria\": \"The board must contain at least two tiles with value 128 or higher.\"}",
10
  "reward_function": "_validate_create_two_high_tiles",
tasks/2048/get-128-tile.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Get 128 Tile",
5
  "description": "Create a 128 tile in one move",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 128 tile by combining the two 64-tiles in the middle column. Make the move that will merge them together.\", \"success_criteria\": \"The board must contain a 128-tile after the move.\"}",
10
  "reward_function": "_validate_get_128_tile",
 
4
  "name": "Get 128 Tile",
5
  "description": "Create a 128 tile in one move",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 128 tile by combining the two 64-tiles in the middle column. Make the move that will merge them together.\", \"success_criteria\": \"The board must contain a 128-tile after the move.\"}",
10
  "reward_function": "_validate_get_128_tile",
tasks/2048/get-2048.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Get 2048 in one move",
5
  "description": "Make the next move to score 2048.",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 1024, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Play 2048 and make the next move that would cause a 2048 tile to appear.\", \"success_criteria\": \"The game board must contain a 2048 tile.\"}",
10
  "reward_function": "_validate_get_2048",
 
4
  "name": "Get 2048 in one move",
5
  "description": "Make the next move to score 2048.",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 1024, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Play 2048 and make the next move that would cause a 2048 tile to appear.\", \"success_criteria\": \"The game board must contain a 2048 tile.\"}",
10
  "reward_function": "_validate_get_2048",
tasks/2048/get-256-tile.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Get 256 Tile",
5
  "description": "Create a 256 tile in three moves",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 32, 32, 0, 0, 32, 32, 0, 32, 0, 32, 0, 0, 32, 32], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 256 tile by combining 32-tiles to make 64-tiles, then combining those 64-tiles to make 128-tiles, and finally combining those 128-tiles to make a 256-tile. This requires three strategic moves.\", \"success_criteria\": \"The board must contain a 256-tile after completing the three moves.\"}",
10
  "reward_function": "_validate_get_256_tile",
 
4
  "name": "Get 256 Tile",
5
  "description": "Create a 256 tile in three moves",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 32, 32, 0, 0, 32, 32, 0, 32, 0, 32, 0, 0, 32, 32], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 256 tile by combining 32-tiles to make 64-tiles, then combining those 64-tiles to make 128-tiles, and finally combining those 128-tiles to make a 256-tile. This requires three strategic moves.\", \"success_criteria\": \"The board must contain a 256-tile after completing the three moves.\"}",
10
  "reward_function": "_validate_get_256_tile",
tasks/2048/get-32-tile.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Get 32 Tile",
5
  "description": "Combine two 16-tiles to create a 32-tile",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Combine the two 16-tiles in the middle row to create a 32-tile. Move the tiles so they merge together.\", \"success_criteria\": \"The board must contain a 32-tile after the move.\"}",
10
  "reward_function": "_validate_get_32_tile",
 
4
  "name": "Get 32 Tile",
5
  "description": "Combine two 16-tiles to create a 32-tile",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Combine the two 16-tiles in the middle row to create a 32-tile. Move the tiles so they merge together.\", \"success_criteria\": \"The board must contain a 32-tile after the move.\"}",
10
  "reward_function": "_validate_get_32_tile",
tasks/2048/get-512-tile.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Get 512 Tile",
5
  "description": "Create a 512 tile in three moves",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [64, 64, 0, 0, 64, 0, 64, 0, 64, 64, 0, 0, 64, 0, 0, 64], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 512 tile by combining 64-tiles to make 128-tiles, then combining those 128-tiles to make 256-tiles, and finally combining those 256-tiles to make a 512-tile. This requires three strategic moves.\", \"success_criteria\": \"The board must contain a 512-tile after completing the three moves.\"}",
10
  "reward_function": "_validate_get_512_tile",
 
4
  "name": "Get 512 Tile",
5
  "description": "Create a 512 tile in three moves",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [64, 64, 0, 0, 64, 0, 64, 0, 64, 64, 0, 0, 64, 0, 0, 64], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Create a 512 tile by combining 64-tiles to make 128-tiles, then combining those 128-tiles to make 256-tiles, and finally combining those 256-tiles to make a 512-tile. This requires three strategic moves.\", \"success_criteria\": \"The board must contain a 512-tile after completing the three moves.\"}",
10
  "reward_function": "_validate_get_512_tile",
tasks/2048/make-first-move.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Make First Move",
5
  "description": "Make any valid move from the initial board state",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Make any valid move in the 2048 game. Use the arrow keys to move tiles in any direction (up, down, left, or right).\", \"success_criteria\": \"The board must change from its initial state after making a move.\"}",
10
  "reward_function": "_validate_2048_make_first_move",
 
4
  "name": "Make First Move",
5
  "description": "Make any valid move from the initial board state",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Make any valid move in the 2048 game. Use the arrow keys to move tiles in any direction (up, down, left, or right).\", \"success_criteria\": \"The board must change from its initial state after making a move.\"}",
10
  "reward_function": "_validate_2048_make_first_move",
tasks/2048/move-tiles-right.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Move Tiles Right",
5
  "description": "Move all tiles to the right side of the board",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [2, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Move all tiles to the right side of the board using the right arrow key. All tiles should be positioned in the rightmost column.\", \"success_criteria\": \"All tiles must be in the rightmost column (positions 3, 7, 11, 15).\"}",
10
  "reward_function": "_validate_move_tiles_right",
 
4
  "name": "Move Tiles Right",
5
  "description": "Move all tiles to the right side of the board",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [2, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Move all tiles to the right side of the board using the right arrow key. All tiles should be positioned in the rightmost column.\", \"success_criteria\": \"All tiles must be in the rightmost column (positions 3, 7, 11, 15).\"}",
10
  "reward_function": "_validate_move_tiles_right",
tasks/2048/reach-540-sum.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Reach 540 Sum",
5
  "description": "Achieve a board with tiles summing to 540 or more",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [256, 128, 64, 32, 16, 8, 4, 2, 2, 2, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Achieve a board where the sum of all tile values is 540 or more. Combine tiles strategically to increase the total value.\", \"success_criteria\": \"The sum of all tile values on the board must be 540 or greater.\"}",
10
  "reward_function": "_validate_reach_540_sum",
 
4
  "name": "Reach 540 Sum",
5
  "description": "Achieve a board with tiles summing to 540 or more",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [256, 128, 64, 32, 16, 8, 4, 2, 2, 2, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Achieve a board where the sum of all tile values is 540 or more. Combine tiles strategically to increase the total value.\", \"success_criteria\": \"The sum of all tile values on the board must be 540 or greater.\"}",
10
  "reward_function": "_validate_reach_540_sum",
tasks/2048/strategic-32.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Strategic 32",
5
  "description": "Create a 32 tile from a sparse board with strategic moves",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/2048/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Starting from an empty board, strategically create a 32 tile. You'll need to build up from smaller tiles through careful planning and multiple moves. This requires combining tiles multiple times: 2→4→8→16→32.\", \"success_criteria\": \"The board must contain a 32-tile after completing the strategic moves.\"}",
10
  "reward_function": "_validate_strategic_32",
 
4
  "name": "Strategic 32",
5
  "description": "Create a 32 tile from a sparse board with strategic moves",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d3lutilach12pf.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"board\": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \"gameOver\": false, \"gameInitialized\": true}",
9
  "instructions": "{\"user_prompt\": \"Starting from an empty board, strategically create a 32 tile. You'll need to build up from smaller tiles through careful planning and multiple moves. This requires combining tiles multiple times: 2→4→8→16→32.\", \"success_criteria\": \"The board must contain a 32-tile after completing the strategic moves.\"}",
10
  "reward_function": "_validate_strategic_32",
tasks/action-tester/must-click.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Click Action Test",
5
  "description": "Test the agent's ability to perform a single click action on a button",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Click the blue 'Click Me!' button to complete this task. You need to perform a single left-click on the button.\", \"success_criteria\": \"The hasClicked state must be set to True after clicking the button\"}",
10
  "reward_function": "",
 
4
  "name": "Click Action Test",
5
  "description": "Test the agent's ability to perform a single click action on a button",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Click the blue 'Click Me!' button to complete this task. You need to perform a single left-click on the button.\", \"success_criteria\": \"The hasClicked state must be set to True after clicking the button\"}",
10
  "reward_function": "",
tasks/action-tester/must-complete-all-actions.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Complete All Actions Test",
5
  "description": "Test the agent's ability to perform all computer use actions in sequence - click, double-click, right-click, middle-click, drag, type, hotkey, and scroll",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Complete all 8 computer use actions to finish this comprehensive test: 1) Click the blue 'Click Me!' button, 2) Double-click the purple 'Double Click Me!' button, 3) Right-click the orange area, 4) Middle-click the teal area, 5) Drag the red box to a new position, 6) Type at least 5 characters in the input field, 7) Press Ctrl+S (or Cmd+S on Mac), and 8) Scroll down the page by at least 100 pixels. All actions must be completed successfully.\", \"success_criteria\": \"All action states must be set to True: hasClicked, hasDoubleClicked, hasRightClicked, hasMiddleClicked, hasDragged, hasTyped, hasHotkeyed, and hasScrolled\"}",
10
  "reward_function": "",
 
4
  "name": "Complete All Actions Test",
5
  "description": "Test the agent's ability to perform all computer use actions in sequence - click, double-click, right-click, middle-click, drag, type, hotkey, and scroll",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Complete all 8 computer use actions to finish this comprehensive test: 1) Click the blue 'Click Me!' button, 2) Double-click the purple 'Double Click Me!' button, 3) Right-click the orange area, 4) Middle-click the teal area, 5) Drag the red box to a new position, 6) Type at least 5 characters in the input field, 7) Press Ctrl+S (or Cmd+S on Mac), and 8) Scroll down the page by at least 100 pixels. All actions must be completed successfully.\", \"success_criteria\": \"All action states must be set to True: hasClicked, hasDoubleClicked, hasRightClicked, hasMiddleClicked, hasDragged, hasTyped, hasHotkeyed, and hasScrolled\"}",
10
  "reward_function": "",
tasks/action-tester/must-double-click.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Double Click Action Test",
5
  "description": "Test the agent's ability to perform a double-click action on a button",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Double-click the purple 'Double Click Me!' button to complete this task. You need to perform two quick clicks in succession on the button.\", \"success_criteria\": \"The hasDoubleClicked state must be set to True after double-clicking the button\"}",
10
  "reward_function": "",
 
4
  "name": "Double Click Action Test",
5
  "description": "Test the agent's ability to perform a double-click action on a button",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Double-click the purple 'Double Click Me!' button to complete this task. You need to perform two quick clicks in succession on the button.\", \"success_criteria\": \"The hasDoubleClicked state must be set to True after double-clicking the button\"}",
10
  "reward_function": "",
tasks/action-tester/must-drag.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Drag Action Test",
5
  "description": "Test the agent's ability to perform a drag and drop action",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Drag the red 'Drag Me' box to a new position to complete this task. You need to click and hold the red box, then move it to a different location (at least 10 pixels away) before releasing.\", \"success_criteria\": \"The hasDragged state must be set to True after successfully dragging the red box to a new position\"}",
10
  "reward_function": "",
 
4
  "name": "Drag Action Test",
5
  "description": "Test the agent's ability to perform a drag and drop action",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Drag the red 'Drag Me' box to a new position to complete this task. You need to click and hold the red box, then move it to a different location (at least 10 pixels away) before releasing.\", \"success_criteria\": \"The hasDragged state must be set to True after successfully dragging the red box to a new position\"}",
10
  "reward_function": "",
tasks/action-tester/must-hotkey.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Hotkey Action Test",
5
  "description": "Test the agent's ability to use keyboard shortcuts (hotkeys)",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac) to complete this task. You need to hold down the Ctrl key (or Cmd key on Mac) and press the S key simultaneously.\", \"success_criteria\": \"The hasHotkeyed state must be set to True after pressing the Ctrl+S (or Cmd+S) key combination\"}",
10
  "reward_function": "",
 
4
  "name": "Hotkey Action Test",
5
  "description": "Test the agent's ability to use keyboard shortcuts (hotkeys)",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac) to complete this task. You need to hold down the Ctrl key (or Cmd key on Mac) and press the S key simultaneously.\", \"success_criteria\": \"The hasHotkeyed state must be set to True after pressing the Ctrl+S (or Cmd+S) key combination\"}",
10
  "reward_function": "",
tasks/action-tester/must-middle-click.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Middle Click Action Test",
5
  "description": "Test the agent's ability to perform a middle-click (scroll wheel click) action",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here' to complete this task. You need to press down the scroll wheel on the designated area.\", \"success_criteria\": \"The hasMiddleClicked state must be set to True after middle-clicking the teal area\"}",
10
  "reward_function": "",
 
4
  "name": "Middle Click Action Test",
5
  "description": "Test the agent's ability to perform a middle-click (scroll wheel click) action",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here' to complete this task. You need to press down the scroll wheel on the designated area.\", \"success_criteria\": \"The hasMiddleClicked state must be set to True after middle-clicking the teal area\"}",
10
  "reward_function": "",
tasks/action-tester/must-perform-three-medium-actions.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Three Medium Actions Test",
5
  "description": "Test the agent's ability to perform three medium-difficulty actions in sequence: drag, hotkey, and middle-click",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Complete three medium-difficulty computer use actions to finish this test: 1) Drag the red 'Drag Me' box to a new position (at least 10 pixels away), 2) Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac), and 3) Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here'. All three actions must be completed successfully in any order.\", \"success_criteria\": \"The hasDragged, hasHotkeyed, and hasMiddleClicked states must all be set to True\"}",
10
  "reward_function": "",
 
4
  "name": "Three Medium Actions Test",
5
  "description": "Test the agent's ability to perform three medium-difficulty actions in sequence: drag, hotkey, and middle-click",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Complete three medium-difficulty computer use actions to finish this test: 1) Drag the red 'Drag Me' box to a new position (at least 10 pixels away), 2) Press the keyboard shortcut Ctrl+S (or Cmd+S on Mac), and 3) Middle-click (scroll wheel click) on the teal area labeled 'Middle Click Here'. All three actions must be completed successfully in any order.\", \"success_criteria\": \"The hasDragged, hasHotkeyed, and hasMiddleClicked states must all be set to True\"}",
10
  "reward_function": "",
tasks/action-tester/must-right-click.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Right Click Action Test",
5
  "description": "Test the agent's ability to perform a right-click (context menu) action",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Right-click on the orange area labeled 'Right Click Here' to complete this task. You need to perform a right-click (context menu click) on the designated area.\", \"success_criteria\": \"The hasRightClicked state must be set to True after right-clicking the orange area\"}",
10
  "reward_function": "",
 
4
  "name": "Right Click Action Test",
5
  "description": "Test the agent's ability to perform a right-click (context menu) action",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Right-click on the orange area labeled 'Right Click Here' to complete this task. You need to perform a right-click (context menu click) on the designated area.\", \"success_criteria\": \"The hasRightClicked state must be set to True after right-clicking the orange area\"}",
10
  "reward_function": "",
tasks/action-tester/must-scroll.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Scroll Action Test",
5
  "description": "Test the agent's ability to scroll the page",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Scroll down on the page by at least 100 pixels to complete this task. You can use the scroll wheel, arrow keys, or drag the scrollbar to scroll down the page.\", \"success_criteria\": \"The hasScrolled state must be set to True after scrolling down the page by 100 pixels or more\"}",
10
  "reward_function": "",
 
4
  "name": "Scroll Action Test",
5
  "description": "Test the agent's ability to scroll the page",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Scroll down on the page by at least 100 pixels to complete this task. You can use the scroll wheel, arrow keys, or drag the scrollbar to scroll down the page.\", \"success_criteria\": \"The hasScrolled state must be set to True after scrolling down the page by 100 pixels or more\"}",
10
  "reward_function": "",
tasks/action-tester/must-type.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Type Action Test",
5
  "description": "Test the agent's ability to type text into an input field",
6
  "tier": "free",
7
- "environment": "{\"type\": \"url\", \"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/action-tester/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Type at least 5 characters in the text input field to complete this task. Click on the input field with placeholder 'Type here...' and enter at least 5 characters of text.\", \"success_criteria\": \"The hasTyped state must be set to True after typing at least 5 characters in the input field\"}",
10
  "reward_function": "",
 
4
  "name": "Type Action Test",
5
  "description": "Test the agent's ability to type text into an input field",
6
  "tier": "free",
7
+ "environment": "{\"type\": \"url\", \"path\": \"https://d1oxmyj811b14d.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"hasClicked\": false, \"hasDoubleClicked\": false, \"hasDragged\": false, \"hasHotkeyed\": false, \"hasMiddleClicked\": false, \"hasRightClicked\": false, \"hasScrolled\": false, \"hasTyped\": false}",
9
  "instructions": "{\"user_prompt\": \"Type at least 5 characters in the text input field to complete this task. Click on the input field with placeholder 'Type here...' and enter at least 5 characters of text.\", \"success_criteria\": \"The hasTyped state must be set to True after typing at least 5 characters in the input field\"}",
10
  "reward_function": "",
tasks/amazon/customer-reviews-that-have-4-stars-and-above.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/customer-reviews-that-have-5-stars.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/entering-pod-in-the-search-bar.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-on-amazon-global-store.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-on-include-out-of-stock.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-on-product-condition-renewed.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-on-products-condition-new.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-on-products-condition-used.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-products-based-on-prime-delivery.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-products-based-on-single-day-delivery.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-products-on-free-delivery.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/filter-products-on-two-day-delivery.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/{filter-products-with-prices-between-99---204.json → filter-products-with-prices-between-99-and-204.json} RENAMED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/multiple-filters.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/navigate-from-home-to-product-page.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/navigate-from-product-page-to-product-page.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/navigate-from-product-page-to-search-page.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/navigate-from-search-page-to-product-page.json CHANGED
@@ -4,7 +4,7 @@
4
  "name": "Navigate from search page to product page",
5
  "description": "From the search page, click on a given product to get to the product page.",
6
  "tier": "pro",
7
- "environment": "{\"type\": \"url\",\"path\": \"https://dojo-spas-production.s3.us-east-1.amazonaws.com/amazon/index.html\"}",
8
  "initial_state": "{\"currentPage\": \"search\",\"searchQuery\": \"book\",\"products\": [{\"id\": \"B08N5WRWNW\",\"name\": \"Sony WH-1000XM5 Wireless Industry Leading Noise Canceling Headphones\",\"brand\": \"Sony\",\"rating\": 3.6,\"numRatings\": 12847,\"price\": 449.99,\"originalPrice\": 549.99,\"mainImage\": \"/src/assets/main-images/sony.png\",\"images\": [\"/src/assets/main-images/sony.png\",\"https://images.unsplash.com/photo-1546435770-a3e426bf472b?w=800\",\"https://images.unsplash.com/photo-1484704849700-f032a568e944?w=800\"],\"description\": \"Experience the best noise canceling technology with the Sony WH-1000XM5. These premium wireless headphones feature industry-leading noise cancellation, exceptional sound quality, and up to 30 hours of battery life. Perfect for travel, work, or relaxation.\",\"features\": [\"Industry-leading noise cancellation with 8 microphones\",\"30-hour battery life with quick charging (3 min charge = 3 hours playback)\",\"Premium sound quality with LDAC audio coding\",\"Multipoint connection - connect two devices simultaneously\",\"Ultra-comfortable design with soft fit leather\",\"Speak-to-chat technology automatically pauses music\"],\"specifications\": {\"Battery Life\": \"30 hours\",\"Charging Time\": \"3.5 hours\",\"Weight\": \"250g\",\"Bluetooth Version\": \"5.2\",\"Driver Size\": \"30mm\",\"Frequency Response\": \"4Hz-40,000Hz\"},\"ratingBreakdown\": {\"fiveStars\": 8934,\"fourStars\": 2456,\"threeStars\": 4012,\"twoStars\": 345,\"oneStar\": 221},\"reviews\": [{\"id\": \"R1\",\"author\": \"Sarah Mitchel\",\"rating\": 5,\"title\": \"Best headphones I've ever owned\",\"comment\": \"The noise cancellation is absolutely incredible. I use these on my daily commute and can't hear a thing. The sound quality is pristine, and they're so comfortable I forget I'm wearing them. Battery life easily gets me through a full week. Worth every penny!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 234},{\"id\": \"R2\",\"author\": \"James Chen\",\"rating\": 5,\"title\": \"Perfect for working from home\",\"comment\": \"These headphones have been a game-changer for my home office setup. The noise cancellation blocks out all the neighborhood sounds, and the microphone quality is excellent for video calls. My colleagues say I sound crystal clear.\",\"date\": \"2024-10-08\",\"verified\": true,\"helpful\": 178},{\"id\": \"R3\",\"author\": \"Emma Rodriguez\",\"rating\": 4,\"title\": \"Great but pricey\",\"comment\": \"The sound quality and noise cancellation are top-notch. My only complaint is the price - they're quite expensive. But if you can afford them, they're definitely worth it. The comfort level is outstanding for long listening sessions.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 142},{\"id\": \"R4\",\"author\": \"Michael Thompson\",\"rating\": 5,\"title\": \"Amazing for travel\",\"comment\": \"Just took these on a 14-hour flight and they were perfect. The noise cancellation made the engine noise disappear completely. Battery lasted the entire journey with power to spare. Highly recommend for frequent travelers!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 98},{\"id\": \"R5\",\"author\": \"Lisa Park\",\"rating\": 3,\"title\": \"Good but not perfect for small heads\",\"comment\": \"Sound quality is excellent and the ANC works great. However, I have a smaller head and they feel a bit loose even at the tightest setting. They occasionally slip during workouts. Otherwise, a solid product.\",\"date\": \"2024-09-12\",\"verified\": true,\"helpful\": 67},{\"id\": \"R5A\",\"author\": \"Carlos Mendez\",\"rating\": 5,\"title\": \"Outstanding sound quality\",\"comment\": \"The LDAC audio coding really makes a difference. Music sounds incredibly detailed and rich. The bass is punchy without being overwhelming, and the highs are crystal clear. Best audio experience I've had with wireless headphones.\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 156},{\"id\": \"R5B\",\"author\": \"Anna Williams\",\"rating\": 4,\"title\": \"Excellent ANC, minor issues\",\"comment\": \"The noise cancellation is phenomenal - blocks out everything. The speak-to-chat feature is clever but sometimes activates when I'm just humming. Overall, these are fantastic headphones for the price.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 124},{\"id\": \"R5C\",\"author\": \"David Kim\",\"rating\": 5,\"title\": \"Worth upgrading from XM4\",\"comment\": \"I had the XM4s and these are a noticeable improvement. Better noise cancellation, more comfortable pads, and the multipoint connection is a game-changer. Battery life is still excellent. Highly recommend the upgrade!\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 203}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, metal, synthetic leather\",\"countryOfOrigin\": \"Malaysia\",\"dateFirstAvailable\": \"2022-05-19\",\"manufacturer\": \"Sony Corporation\",\"itemModelNumber\": \"WH-1000XM5\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Headphones\",\"Wireless Headphones\"]},{\"id\": \"B09G9FPHY6\",\"name\": \"Apple AirPods Pro (2nd Generation) with MagSafe Charging Case\",\"brand\": \"Apple\",\"rating\": 4.7,\"numRatings\": 24532,\"price\": 329,\"originalPrice\": 399,\"mainImage\": \"/src/assets/main-images/airpods.png\",\"images\": [\"/src/assets/main-images/airpods.png\",\"https://images.unsplash.com/photo-1588423771073-b8903fbb85b5?w=800\",\"https://images.unsplash.com/photo-1572569511254-d8f925fe2cbb?w=800\",\"https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=800\"],\"description\": \"The Apple AirPods Pro (2nd generation) deliver an exceptional listening experience with up to 2x more Active Noise Cancellation than the previous generation. Features include Adaptive Transparency, Personalized Spatial Audio, and a MagSafe Charging Case.\",\"features\": [\"Up to 2x more Active Noise Cancellation\",\"Adaptive Transparency lets outside sound in\",\"Personalized Spatial Audio with dynamic head tracking\",\"Four pairs of silicone tips (XS, S, M, L)\",\"Touch control for volume adjustment\",\"Up to 6 hours listening time with ANC on\",\"Sweat and water resistant (IPX4)\"],\"specifications\": {\"Battery Life (Earbuds)\": \"6 hours\",\"Battery Life (With Case)\": \"30 hours\",\"Charging\": \"MagSafe, Wireless, Lightning\",\"Bluetooth\": \"5.3\",\"Chip\": \"H2\",\"Water Resistance\": \"IPX4\"},\"ratingBreakdown\": {\"fiveStars\": 18245,\"fourStars\": 4327,\"threeStars\": 1234,\"twoStars\": 456,\"oneStar\": 270},\"reviews\": [{\"id\": \"R6\",\"author\": \"David Kim\",\"rating\": 5,\"title\": \"Perfect integration with iPhone\",\"comment\": \"If you have an iPhone, these are a no-brainer. The seamless connection, automatic switching between devices, and the Find My integration are incredible. Sound quality is great and the ANC is very effective.\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 445},{\"id\": \"R7\",\"author\": \"Rachel Green\",\"rating\": 5,\"title\": \"Best earbuds I've tried\",\"comment\": \"The fit is perfect with the different tip sizes, and they stay in my ears even during runs. The noise cancellation is impressive for such small earbuds. Spatial audio is a game-changer for movies!\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 312},{\"id\": \"R8\",\"author\": \"Tom Anderson\",\"rating\": 4,\"title\": \"Great but expensive\",\"comment\": \"These are fantastic earbuds with excellent features, but the price is steep. If you're invested in the Apple ecosystem, they're worth it. The transparency mode is particularly useful for staying aware of surroundings.\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 198},{\"id\": \"R9\",\"author\": \"Jennifer Wu\",\"rating\": 5,\"title\": \"Amazing for calls\",\"comment\": \"I use these primarily for work calls and they're incredible. The microphone quality is crystal clear, and the noise cancellation means people can't hear my background noise. Battery life is solid too.\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 156},{\"id\": \"R10\",\"author\": \"Mark Stevens\",\"rating\": 4,\"title\": \"Excellent sound, minor fit issues\",\"comment\": \"Sound quality is top-notch and features are impressive. My only issue is that during intense workouts, they occasionally feel like they might fall out. Otherwise, highly recommended!\",\"date\": \"2024-09-29\",\"verified\": true,\"helpful\": 89},{\"id\": \"R10A\",\"author\": \"Olivia Brown\",\"rating\": 5,\"title\": \"Perfect for daily use\",\"comment\": \"I wear these pretty much all day - commute, gym, work calls. The battery life with the case is amazing. The adaptive transparency is a standout feature - it automatically adjusts when loud sounds occur. Genius!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 267},{\"id\": \"R10B\",\"author\": \"Ryan Taylor\",\"rating\": 5,\"title\": \"Best upgrade from 1st gen\",\"comment\": \"Upgraded from the first gen AirPods Pro and the difference is night and day. The ANC is significantly better, and the touch controls for volume are so convenient. The MagSafe charging is a nice bonus too.\",\"date\": \"2024-10-01\",\"verified\": true,\"helpful\": 189},{\"id\": \"R10C\",\"author\": \"Maria Garcia\",\"rating\": 4,\"title\": \"Great but price could be lower\",\"comment\": \"These are excellent earbuds with great sound and features. The personalization with iOS is fantastic. Only reason for 4 stars is the price - they're quite expensive. But if you can afford them, they're worth it.\",\"date\": \"2024-09-26\",\"verified\": true,\"helpful\": 145}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, silicone, metal\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2022-09-23\",\"manufacturer\": \"Apple Inc.\",\"itemModelNumber\": \"MTJV3AM/A\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"tomorrow\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": true,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Headphones\",\"Wireless Earbuds\"]},{\"id\": \"B0BSHF7WHW\",\"name\": \"Kindle Paperwhite (16 GB) \\u2013 Now with a 6.8\\\" display and adjustable warm light\",\"brand\": \"Amazon\",\"rating\": 5,\"numRatings\": 18923,\"price\": 189,\"originalPrice\": 229,\"mainImage\": \"/src/assets/main-images/kindle.png\",\"images\": [\"/src/assets/main-images/kindle.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1532012197267-da84d127e765?w=800\"],\"description\": \"The Kindle Paperwhite features a glare-free 6.8\\\" display that reads like real paper, even in bright sunlight. With adjustable warm light and up to 10 weeks of battery life, it's perfect for reading anytime, anywhere. Waterproof design (IPX8) means you can read in the bath or by the pool.\",\"features\": [\"6.8\\\" glare-free display with 300 ppi\",\"Adjustable warm light for comfortable reading\",\"Up to 10 weeks battery life\",\"Waterproof (IPX8) - safe from accidental water exposure\",\"16 GB storage - holds thousands of books\",\"Thin and lightweight design\",\"Flush-front design with uniform lighting\"],\"specifications\": {\"Display Size\": \"6.8 inches\",\"Resolution\": \"300 ppi\",\"Storage\": \"16 GB\",\"Battery Life\": \"Up to 10 weeks\",\"Weight\": \"205g\",\"Water Resistance\": \"IPX8\",\"Connectivity\": \"Wi-Fi\"},\"ratingBreakdown\": {\"fiveStars\": 15234,\"fourStars\": 2678,\"threeStars\": 634,\"twoStars\": 234,\"oneStar\": 143},\"reviews\": [{\"id\": \"R11\",\"author\": \"Amanda Foster\",\"rating\": 5,\"title\": \"Perfect for avid readers\",\"comment\": \"I read every single day and this Kindle is absolutely perfect. The warm light feature is a game-changer for nighttime reading - no more eye strain. Battery lasts forever, and the larger screen is so much better than my old Kindle.\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 567},{\"id\": \"R12\",\"author\": \"Robert Martinez\",\"rating\": 5,\"title\": \"Worth every penny\",\"comment\": \"I was hesitant to spend this much on an e-reader, but I'm so glad I did. The reading experience is incredible - just like real paper. Being waterproof is a huge bonus. I read in the bathtub all the time now!\",\"date\": \"2024-10-16\",\"verified\": true,\"helpful\": 423},{\"id\": \"R13\",\"author\": \"Sophie Turner\",\"rating\": 5,\"title\": \"Love the larger screen\",\"comment\": \"Upgraded from the basic Kindle and the larger screen makes such a difference. I can increase the font size without feeling cramped. The warm light is gentle on the eyes. Highly recommend!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 298},{\"id\": \"R14\",\"author\": \"Chris Johnson\",\"rating\": 4,\"title\": \"Great device, wish it had page turn buttons\",\"comment\": \"The Kindle is excellent overall - great screen, comfortable to hold, and waterproof. My only wish is that it had physical page turn buttons like the Oasis. But for the price, it's hard to complain.\",\"date\": \"2024-10-04\",\"verified\": true,\"helpful\": 187},{\"id\": \"R15\",\"author\": \"Emily Chen\",\"rating\": 5,\"title\": \"Best purchase this year\",\"comment\": \"I'm reading so much more now! The screen is beautiful, battery life is phenomenal, and I love being able to adjust the warmth. It's lightweight enough to hold for hours. Couldn't be happier with this purchase.\",\"date\": \"2024-09-27\",\"verified\": true,\"helpful\": 145},{\"id\": \"R15A\",\"author\": \"Thomas Wilson\",\"rating\": 5,\"title\": \"Excellent for travel\",\"comment\": \"Perfect for long flights and vacations. I can carry hundreds of books without any weight. The waterproof feature gives me peace of mind near the pool. The 16GB storage is more than enough for my entire library.\",\"date\": \"2024-10-08\",\"verified\": true,\"helpful\": 234},{\"id\": \"R15B\",\"author\": \"Jessica Lee\",\"rating\": 4,\"title\": \"Great upgrade\",\"comment\": \"Upgraded from an older Kindle and the improvements are noticeable. The screen is sharper, the warm light is wonderful, and the flush design looks modern. Only minor complaint is the charging port - wish it was USB-C.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 178},{\"id\": \"R15C\",\"author\": \"Daniel Kim\",\"rating\": 5,\"title\": \"Perfect reading device\",\"comment\": \"The 6.8 inch screen is the sweet spot - big enough for comfortable reading but still portable. I love that I can read in direct sunlight without any glare. The battery truly lasts weeks as advertised. Highly recommend!\",\"date\": \"2024-09-22\",\"verified\": true,\"helpful\": 201}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, glass, metal\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2021-10-27\",\"manufacturer\": \"Amazon.com Services LLC\",\"itemModelNumber\": \"B0BSHF7WHW\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"E-Readers & Accessories\",\"Kindle E-Readers\"]},{\"id\": \"B09B9VFKH5\",\"name\": \"LEGO Star Wars Millennium Falcon 75192 Building Kit\",\"brand\": \"LEGO\",\"rating\": 4.9,\"numRatings\": 8734,\"price\": 1299.99,\"mainImage\": \"/src/assets/main-images/lego.png\",\"images\": [\"/src/assets/main-images/lego.png\",\"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800\"],\"description\": \"The ultimate LEGO Star Wars Millennium Falcon! This highly detailed model features 7,541 pieces and measures over 8 inches high, 33 inches long, and 22 inches wide. Includes iconic characters and intricate interior details. Perfect for display and collectors.\",\"features\": [\"7,541 pieces for an immersive building experience\",\"Includes 7 minifigures and 2 droids\",\"Highly detailed exterior with sensor dish and removable panels\",\"Interior includes cockpit, cargo area, and hidden smuggling compartments\",\"Rotating top and bottom gun turrets\",\"Display stand included\",\"Suitable for ages 16+\"],\"specifications\": {\"Piece Count\": \"7,541\",\"Dimensions\": \"33\\\" L x 22\\\" W x 8\\\" H\",\"Weight\": \"13.5 kg\",\"Minifigures\": \"7 included\",\"Recommended Age\": \"16+\",\"Theme\": \"Star Wars\"},\"ratingBreakdown\": {\"fiveStars\": 8234,\"fourStars\": 378,\"threeStars\": 78,\"twoStars\": 28,\"oneStar\": 16},\"reviews\": [{\"id\": \"R16\",\"author\": \"Nathan Brooks\",\"rating\": 5,\"title\": \"The ultimate LEGO experience\",\"comment\": \"Took me about 3 weeks to complete, building a few hours each evening. This is an absolute masterpiece. The level of detail is mind-blowing. Every Star Wars fan needs this in their collection. Yes, it's expensive, but worth every cent.\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 789},{\"id\": \"R17\",\"author\": \"Kelly Peterson\",\"rating\": 5,\"title\": \"Best LEGO set ever made\",\"comment\": \"Built this with my teenage son over the holidays. It was such a fun bonding experience. The build is complex but the instructions are clear. The finished model is stunning and takes pride of place in our living room.\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 623},{\"id\": \"R18\",\"author\": \"Greg Morrison\",\"rating\": 5,\"title\": \"Engineering marvel\",\"comment\": \"The engineering that went into designing this set is incredible. So many clever building techniques. The interior is fully detailed and accessible. Display stand works perfectly. This is LEGO at its finest.\",\"date\": \"2024-10-07\",\"verified\": true,\"helpful\": 534},{\"id\": \"R19\",\"author\": \"Michelle Davis\",\"rating\": 5,\"title\": \"Worth the investment\",\"comment\": \"Yes, it's pricey, but this is a genuine collector's item. The attention to detail is phenomenal. I display it in my office and everyone who sees it is blown away. If you're a Star Wars fan, you won't regret this purchase.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 412},{\"id\": \"R20\",\"author\": \"Paul Richardson\",\"rating\": 5,\"title\": \"Challenging and rewarding build\",\"comment\": \"This isn't a quick build - it took me about 40 hours total. But every minute was enjoyable. The final result is spectacular. Make sure you have enough space to display it properly - it's HUGE!\",\"date\": \"2024-09-23\",\"verified\": true,\"helpful\": 356},{\"id\": \"R20A\",\"author\": \"Stephanie Adams\",\"rating\": 5,\"title\": \"Incredible detail\",\"comment\": \"The amount of detail in this set is absolutely staggering. Every panel, every interior compartment, it's all there. The minifigures are great too. This is definitely a centerpiece display piece. Worth every penny!\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 445},{\"id\": \"R20B\",\"author\": \"Andrew Foster\",\"rating\": 4,\"title\": \"Amazing but challenging\",\"comment\": \"This is an incredible set but it's definitely not for beginners. The build is complex and requires patience. Some steps are quite repetitive. But the end result is absolutely stunning. Just make sure you have the space!\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 312},{\"id\": \"R20C\",\"author\": \"Rachel Martinez\",\"rating\": 5,\"title\": \"Perfect gift for collectors\",\"comment\": \"Bought this as a gift for my husband and he absolutely loved it. Took him about 2 months of weekend building sessions. The display stand is perfect and it looks amazing in our collection room. A true masterpiece!\",\"date\": \"2024-09-18\",\"verified\": true,\"helpful\": 278}],\"inStock\": true,\"prime\": false,\"department\": \"Toys & Games\",\"materialComposition\": \"ABS plastic\",\"countryOfOrigin\": \"Denmark\",\"dateFirstAvailable\": \"2017-09-14\",\"manufacturer\": \"The LEGO Group\",\"itemModelNumber\": \"75192\",\"shipsFromUnitedStates\": false,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": false,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": true,\"breadcrumbs\": [\"Toys & Games\",\"Building Toys\",\"LEGO\",\"LEGO Star Wars\"]},{\"id\": \"B08L5VNJ2P\",\"name\": \"Instant Pot Duo Plus 9-in-1 Electric Pressure Cooker, 6 Quart\",\"brand\": \"Instant Pot\",\"rating\": 4.7,\"numRatings\": 45628,\"price\": 149.95,\"originalPrice\": 199.95,\"mainImage\": \"/src/assets/main-images/pot.png\",\"images\": [\"/src/assets/main-images/pot.png\",\"https://images.unsplash.com/photo-1556910110-a5a63dfd393c?w=800\",\"https://images.unsplash.com/photo-1556910096-6f5e72db6803?w=800\",\"https://images.unsplash.com/photo-1604328471151-b52226907017?w=800\"],\"description\": \"The Instant Pot Duo Plus is a 9-in-1 programmable cooker that can replace your pressure cooker, slow cooker, rice cooker, steamer, saut\\u00e9 pan, yogurt maker, warmer, sterilizer, and sous vide. With 15 Smart Programs, cooking has never been easier or faster.\",\"features\": [\"9-in-1 functionality: Pressure Cook, Slow Cook, Rice Cooker, Steamer, Saut\\u00e9, Yogurt Maker, Warmer, Sous Vide, Sterilizer\",\"15 customizable Smart Programs\",\"6-quart capacity - perfect for families\",\"Stainless steel inner pot (dishwasher safe)\",\"10+ safety features including overheat protection\",\"Delay start timer up to 24 hours\",\"Free app with 1900+ recipes\"],\"specifications\": {\"Capacity\": \"6 Quarts\",\"Power\": \"1000W\",\"Voltage\": \"240V\",\"Material\": \"Stainless Steel\",\"Weight\": \"5.8 kg\",\"Dimensions\": \"32.5 x 31.2 x 31.7 cm\",\"Programs\": \"15\"},\"ratingBreakdown\": {\"fiveStars\": 34256,\"fourStars\": 8234,\"threeStars\": 2134,\"twoStars\": 678,\"oneStar\": 326},\"reviews\": [{\"id\": \"R21\",\"author\": \"Jessica Martinez\",\"rating\": 5,\"title\": \"Life-changing kitchen appliance\",\"comment\": \"I use this literally every day. Meal prep is so much faster now. Rice comes out perfect every time, and I can make a whole chicken dinner in 30 minutes. If you're on the fence, just buy it. You won't regret it!\",\"date\": \"2024-10-24\",\"verified\": true,\"helpful\": 1234},{\"id\": \"R22\",\"author\": \"Daniel Cooper\",\"rating\": 5,\"title\": \"Best kitchen investment\",\"comment\": \"This thing has replaced like 5 appliances in my kitchen. The yogurt function alone makes it worth it. Pressure cooking is fast and everything comes out tender. Learning curve is minimal with all the preset programs.\",\"date\": \"2024-10-21\",\"verified\": true,\"helpful\": 987},{\"id\": \"R23\",\"author\": \"Lauren White\",\"rating\": 4,\"title\": \"Great but takes up counter space\",\"comment\": \"The Instant Pot works brilliantly and I love using it. My only complaint is that it's quite large and takes up significant counter space. But the functionality makes up for it. Makes amazing pulled pork!\",\"date\": \"2024-10-17\",\"verified\": true,\"helpful\": 756},{\"id\": \"R24\",\"author\": \"Ryan Phillips\",\"rating\": 5,\"title\": \"Perfect for busy families\",\"comment\": \"As a working parent, this has been a game-changer. I can throw in ingredients in the morning, set the delay timer, and come home to a hot meal. The slow cooker function is great for soups and stews.\",\"date\": \"2024-10-13\",\"verified\": true,\"helpful\": 645},{\"id\": \"R25\",\"author\": \"Nicole Evans\",\"rating\": 5,\"title\": \"Worth every cent\",\"comment\": \"I was skeptical about the hype but this really delivers. Beans cook in 25 minutes without pre-soaking, rice is perfect, and the saut\\u00e9 function means I can brown meat right in the pot. Cleanup is easy too!\",\"date\": \"2024-10-09\",\"verified\": true,\"helpful\": 534},{\"id\": \"R25A\",\"author\": \"Patrick O'Brien\",\"rating\": 5,\"title\": \"Game changer for meal prep\",\"comment\": \"I meal prep every Sunday and this has cut my time in half. I can cook multiple things at once using the stacking method. The keep warm function is perfect too. Best kitchen purchase I've made in years!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 678},{\"id\": \"R25B\",\"author\": \"Kimberly Chang\",\"rating\": 4,\"title\": \"Great but intimidating at first\",\"comment\": \"Took me a few tries to get comfortable with it, but now I use it all the time. The pressure release can be a bit scary at first, but once you get the hang of it, it's easy. Makes the best hard-boiled eggs!\",\"date\": \"2024-10-07\",\"verified\": true,\"helpful\": 523},{\"id\": \"R25C\",\"author\": \"Michael Roberts\",\"rating\": 5,\"title\": \"Perfect for cooking meat\",\"comment\": \"The pressure cooking function makes the most tender meat I've ever cooked. Ribs fall off the bone, chicken is perfectly juicy. The 6-quart size is perfect for my family of four. Can't recommend enough!\",\"date\": \"2024-09-29\",\"verified\": true,\"helpful\": 456}],\"inStock\": true,\"prime\": true,\"department\": \"Home & Kitchen\",\"materialComposition\": \"Stainless steel, plastic, silicone\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2019-03-15\",\"manufacturer\": \"Instant Brands Inc.\",\"itemModelNumber\": \"DUO60\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Home & Kitchen\",\"Kitchen & Dining\",\"Small Appliances\",\"Pressure Cookers\"]},{\"id\": \"B0B2QJZF8D\",\"name\": \"Anker PowerCore 20000mAh Portable Charger - Ultra-High Capacity Power Bank\",\"brand\": \"Anker\",\"rating\": 4.6,\"numRatings\": 32145,\"price\": 79.99,\"originalPrice\": 99.99,\"mainImage\": \"/src/assets/main-images/powerbank.png\",\"images\": [\"/src/assets/main-images/powerbank.png\",\"https://images.unsplash.com/photo-1624823183493-ed5832f48f18?w=800\"],\"description\": \"The Anker PowerCore 20000 is one of the smallest and lightest 20,000mAh portable chargers on the market. Featuring PowerIQ and VoltageBoost technology, it ensures the fastest possible charge for your devices. Perfect for travel, camping, or everyday use.\",\"features\": [\"Ultra-high 20,000mAh capacity - charge iPhone 13 4+ times\",\"Dual USB ports charge two devices simultaneously\",\"PowerIQ and VoltageBoost for optimized charging\",\"High-speed recharging with 2A input\",\"Premium aluminum alloy exterior\",\"MultiProtect safety system\",\"Includes travel pouch and micro USB cable\"],\"specifications\": {\"Capacity\": \"20,000mAh / 72Wh\",\"Input\": \"5V/2A\",\"Output\": \"5V/4.8A (2.4A per port)\",\"Weight\": \"356g\",\"Dimensions\": \"15.8 x 7.4 x 1.9 cm\",\"Recharge Time\": \"10 hours\"},\"ratingBreakdown\": {\"fiveStars\": 22345,\"fourStars\": 7234,\"threeStars\": 1678,\"twoStars\": 567,\"oneStar\": 321},\"reviews\": [{\"id\": \"R26\",\"author\": \"Kevin Walsh\",\"rating\": 5,\"title\": \"Incredible capacity in a compact size\",\"comment\": \"This power bank is amazing! I went on a 4-day camping trip and it kept my phone and tablet charged the entire time. It's surprisingly compact for the capacity. Charges devices quickly too. Anker quality as always!\",\"date\": \"2024-10-23\",\"verified\": true,\"helpful\": 892},{\"id\": \"R27\",\"author\": \"Samantha Lee\",\"rating\": 5,\"title\": \"Perfect for travel\",\"comment\": \"I travel frequently for work and this has been a lifesaver. Fits easily in my bag and provides multiple charges for my phone and wireless earbuds. The dual ports are super convenient when traveling with my partner.\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 723},{\"id\": \"R28\",\"author\": \"Brian Foster\",\"rating\": 4,\"title\": \"Great product, takes a while to recharge\",\"comment\": \"The power bank itself is excellent - great capacity and charges devices quickly. Only downside is that it takes quite a while to fully recharge the bank itself (around 10 hours). Plan accordingly!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 589},{\"id\": \"R29\",\"author\": \"Ashley Morgan\",\"rating\": 5,\"title\": \"Essential for festivals\",\"comment\": \"Took this to a 3-day music festival and it was perfect. Kept my phone alive the entire time with battery to spare. Love that I can charge my phone and my friend's phone simultaneously. Solid build quality too.\",\"date\": \"2024-10-06\",\"verified\": true,\"helpful\": 467},{\"id\": \"R30\",\"author\": \"Timothy Green\",\"rating\": 5,\"title\": \"Anker never disappoints\",\"comment\": \"I've owned several Anker products and they're always top quality. This power bank is no exception. Charges fast, holds charge well, and the capacity is impressive. The included case is a nice touch too.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 398},{\"id\": \"R30A\",\"author\": \"Jordan Smith\",\"rating\": 5,\"title\": \"Reliable and durable\",\"comment\": \"I've had this for over a year now and it still works perfectly. The build quality is excellent - it's survived multiple drops and trips. The capacity hasn't degraded at all. Anker makes quality products!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 512},{\"id\": \"R30B\",\"author\": \"Lisa Chen\",\"rating\": 4,\"title\": \"Great capacity but heavy\",\"comment\": \"The capacity is amazing - I can charge my phone multiple times. The only downside is it's a bit heavy to carry around all day. But for travel and camping, it's perfect. The dual ports are very convenient.\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 389},{\"id\": \"R30C\",\"author\": \"Robert Johnson\",\"rating\": 5,\"title\": \"Perfect for emergencies\",\"comment\": \"I keep this in my car for emergencies and it's been a lifesaver multiple times. The capacity means I can charge multiple devices, and it holds its charge for months. The PowerIQ technology really works!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Aluminum alloy, plastic, lithium-ion battery\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2021-08-12\",\"manufacturer\": \"Anker Innovations Limited\",\"itemModelNumber\": \"A1289\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Mobile Accessories\",\"Power Banks\"]},{\"id\": \"CLOTH001\",\"name\": \"Nike Air Max 270 Men's Sneakers\",\"brand\": \"Nike\",\"rating\": 4.7,\"numRatings\": 9834,\"price\": 189.99,\"originalPrice\": 249.99,\"mainImage\": \"/src/assets/main-images/shoe.png\",\"images\": [\"/src/assets/main-images/shoe.png\",\"https://images.unsplash.com/photo-1549298916-b41d501d3772?w=800\",\"https://images.unsplash.com/photo-1560343090-f0409e92791a?w=800\"],\"description\": \"The Nike Air Max 270 combines sleek, modern style with maximum comfort. Featuring a visible 270 Air unit, lightweight mesh upper, and plush foam midsole for all-day wearability.\",\"features\": [\"Large-volume Max Air unit for responsive cushioning\",\"Engineered mesh upper for breathability\",\"Dual-density foam for a smooth ride\",\"Stretch bootie construction for snug fit\"],\"specifications\": {\"Material\": \"Mesh upper, rubber sole\",\"Heel Height\": \"32mm\",\"Closure\": \"Lace-up\",\"Weight\": \"330g per shoe\"},\"swatches\": [{\"colorName\": \"Triple Black\",\"hex\": \"#000000\",\"image\": \"https://images.unsplash.com/photo-1560343090-f0409e92791a?w=800\"},{\"colorName\": \"White/University Red\",\"hex\": \"#ffffff\",\"image\": \"https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=800\"},{\"colorName\": \"Midnight Navy\",\"hex\": \"#191970\",\"image\": \"https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=800\"}],\"sizes\": [\"US 7\",\"US 8\",\"US 9\",\"US 10\",\"US 11\",\"US 12\"],\"department\": \"Men\\u2019s Shoes\",\"materialComposition\": \"Textile and synthetic upper, rubber sole\",\"countryOfOrigin\": \"Vietnam\",\"dateFirstAvailable\": \"2023-06-12\",\"manufacturer\": \"Nike Inc.\",\"itemModelNumber\": \"AH8050-002\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Shoes\",\"Athletic Shoes\"],\"ratingBreakdown\": {\"fiveStars\": 6823,\"fourStars\": 2145,\"threeStars\": 594,\"twoStars\": 171,\"oneStar\": 101},\"reviews\": [{\"id\": \"R101\",\"author\": \"Alex Turner\",\"rating\": 5,\"title\": \"Extremely comfortable!\",\"comment\": \"Super light and comfortable \\u2014 great for daily wear and gym use. The heel cushioning is amazing!\",\"date\": \"2024-09-02\",\"verified\": true,\"helpful\": 198},{\"id\": \"R102\",\"author\": \"Jake Simmons\",\"rating\": 4,\"title\": \"Stylish and comfy\",\"comment\": \"They look great with jeans or joggers. Slightly narrow at first but they break in quickly.\",\"date\": \"2024-08-15\",\"verified\": true,\"helpful\": 89},{\"id\": \"R102A\",\"author\": \"Marcus Johnson\",\"rating\": 5,\"title\": \"Best running shoes I've owned\",\"comment\": \"I've been wearing these for my morning runs and they're incredible. The cushioning is perfect - not too soft, not too firm. The breathable upper keeps my feet cool. True to size for me!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 234},{\"id\": \"R102B\",\"author\": \"Chris Anderson\",\"rating\": 4,\"title\": \"Great daily wear shoes\",\"comment\": \"Wear these all day at work and my feet never get tired. They look stylish and professional enough for casual Friday. The only issue is they're a bit squeaky on some surfaces, but that's minor.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 167},{\"id\": \"R102C\",\"author\": \"Taylor Brown\",\"rating\": 5,\"title\": \"Perfect fit and style\",\"comment\": \"Ordered my usual size and they fit perfectly. The design is modern and they go with everything. The Air Max cushioning really makes a difference for long walks. Highly recommend!\",\"date\": \"2024-09-15\",\"verified\": true,\"helpful\": 189},{\"id\": \"R102D\",\"author\": \"Jordan Lee\",\"rating\": 4,\"title\": \"Good shoes, minor sizing issue\",\"comment\": \"Great shoes overall - comfortable and stylish. Had to exchange for half size up as they run slightly small. Once I got the right size, they were perfect. The color options are great too!\",\"date\": \"2024-09-05\",\"verified\": true,\"helpful\": 145}],\"inStock\": true,\"prime\": true},{\"id\": \"CLOTH002\",\"name\": \"Levi\\u2019s 511 Slim Fit Men\\u2019s Jeans\",\"brand\": \"Levi\\u2019s\",\"rating\": 4.5,\"numRatings\": 5321,\"price\": 119.99,\"originalPrice\": 139.99,\"mainImage\": \"/src/assets/main-images/jeans.png\",\"images\": [\"/src/assets/main-images/jeans.png\",\"https://images.unsplash.com/photo-1542272604-787c3835535d?w=800\",\"https://images.unsplash.com/photo-1583743814966-8936f5b7be1a?w=800\"],\"description\": \"Levi\\u2019s 511 Slim Fit Jeans are designed for modern style with a close fit and just the right amount of stretch for comfort.\",\"features\": [\"Slim through seat and thigh\",\"Sits below waist\",\"Stretch denim for flexibility\",\"Five-pocket styling\"],\"specifications\": {\"Material\": \"99% Cotton, 1% Elastane\",\"Fit\": \"Slim\",\"Closure\": \"Button fly\",\"Inseam Options\": \"30\\u201d, 32\\u201d, 34\\u201d\"},\"swatches\": [{\"colorName\": \"Dark Indigo\",\"hex\": \"#1A237E\",\"image\": \"https://images.unsplash.com/photo-1542272604-787c3835535d?w=800\"},{\"colorName\": \"Stone Wash\",\"hex\": \"#5C6BC0\",\"image\": \"https://images.unsplash.com/photo-1541099649105-f69ad21f3246?w=800\"}],\"sizes\": [\"30x30\",\"31x32\",\"32x32\",\"33x34\",\"34x32\",\"36x34\"],\"department\": \"Men\\u2019s Clothing\",\"materialComposition\": \"99% Cotton, 1% Elastane\",\"countryOfOrigin\": \"Bangladesh\",\"dateFirstAvailable\": \"2024-03-28\",\"manufacturer\": \"Levi Strauss & Co.\",\"itemModelNumber\": \"511-0216\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Clothing\",\"Pants & Jeans\"],\"ratingBreakdown\": {\"fiveStars\": 3120,\"fourStars\": 1456,\"threeStars\": 512,\"twoStars\": 165,\"oneStar\": 68},\"reviews\": [{\"id\": \"R103\",\"author\": \"Ben Carter\",\"rating\": 5,\"title\": \"Perfect fit!\",\"comment\": \"Love the cut and stretch. Feels premium and fits perfectly. Holds shape even after multiple washes.\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 143},{\"id\": \"R103A\",\"author\": \"Derek Wilson\",\"rating\": 5,\"title\": \"Best jeans I own\",\"comment\": \"I've bought multiple pairs of these - they're that good. The slim fit is perfect, not too tight. The stretch denim is comfortable all day. They look great dressed up or down. Worth every penny!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 256},{\"id\": \"R103B\",\"author\": \"Sam Taylor\",\"rating\": 4,\"title\": \"Great fit, slight fading\",\"comment\": \"The fit is perfect and they're very comfortable. The stretch is great for active days. My only minor complaint is they fade a bit faster than I'd like, but that's typical for indigo denim. Still love them!\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 178},{\"id\": \"R103C\",\"author\": \"Mike Rodriguez\",\"rating\": 5,\"title\": \"Perfect for everyday wear\",\"comment\": \"These have become my go-to jeans. The 511 fit is just right - not too skinny, not too loose. Quality is excellent and they've held up well. The button fly is a nice touch. Highly recommend!\",\"date\": \"2024-09-18\",\"verified\": true,\"helpful\": 201},{\"id\": \"R103D\",\"author\": \"Kevin Park\",\"rating\": 4,\"title\": \"Good jeans with minor stretch\",\"comment\": \"Great quality jeans with excellent fit. The stretch makes them comfortable but I notice they stretch out a bit during the day. They snap back after washing though. Overall, very satisfied!\",\"date\": \"2024-09-10\",\"verified\": true,\"helpful\": 134}],\"inStock\": true,\"prime\": true},{\"id\": \"ACC001\",\"name\": \"Fossil Grant Chronograph Watch - Brown Leather Strap\",\"brand\": \"Fossil\",\"rating\": 4.6,\"numRatings\": 2789,\"price\": 249,\"mainImage\": \"/src/assets/main-images/watch.png\",\"images\": [\"/src/assets/main-images/watch.png\",\"https://images.unsplash.com/photo-1522312346375-d1a52e2b99b3?w=800\",\"https://images.unsplash.com/photo-1434056886845-dac89ffe9b56?w=800\"],\"description\": \"The Fossil Grant Chronograph combines timeless design with modern functionality, featuring a stainless-steel case and genuine brown leather strap.\",\"features\": [\"Chronograph functionality (stopwatch)\",\"Quartz movement with analog display\",\"Genuine leather strap with buckle closure\",\"Water resistant up to 50m\"],\"specifications\": {\"Case Diameter\": \"44mm\",\"Movement\": \"Quartz\",\"Band Material\": \"Genuine Leather\",\"Water Resistance\": \"50 meters\"},\"swatches\": [{\"colorName\": \"Brown Leather / Blue Dial\",\"hex\": \"#5D4037\",\"image\": \"https://images.unsplash.com/photo-1434056886845-dac89ffe9b56?w=800\"},{\"colorName\": \"Black Leather / Silver Dial\",\"hex\": \"#212121\",\"image\": \"https://images.unsplash.com/photo-1524805444758-089113d48a6d?w=800\"}],\"department\": \"Men\\u2019s Accessories\",\"materialComposition\": \"Stainless steel and genuine leather\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2023-11-18\",\"manufacturer\": \"Fossil Group Inc.\",\"itemModelNumber\": \"FS5151\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": false,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Accessories\",\"Watches\"],\"ratingBreakdown\": {\"fiveStars\": 1989,\"fourStars\": 568,\"threeStars\": 159,\"twoStars\": 45,\"oneStar\": 28},\"reviews\": [{\"id\": \"R104\",\"author\": \"James Wilson\",\"rating\": 5,\"title\": \"Classic and elegant\",\"comment\": \"This watch is absolutely beautiful. The brown leather strap is genuine and comfortable. The chronograph function works perfectly. It looks great with both casual and formal wear. Excellent quality!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 312},{\"id\": \"R104A\",\"author\": \"Michael Brown\",\"rating\": 5,\"title\": \"Perfect everyday watch\",\"comment\": \"I wear this watch daily and it's been fantastic. The leather strap has broken in nicely and is very comfortable. The watch keeps perfect time and the chronograph is a nice feature. Great value for the price!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 245},{\"id\": \"R104B\",\"author\": \"David Lee\",\"rating\": 4,\"title\": \"Great watch, wish it was automatic\",\"comment\": \"The watch looks great and the quality is excellent. The leather strap is genuine and comfortable. My only wish is that it was an automatic movement instead of quartz, but for the price, it's still a great watch.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 189},{\"id\": \"R104C\",\"author\": \"Robert Kim\",\"rating\": 5,\"title\": \"Excellent gift choice\",\"comment\": \"Bought this as a gift for my brother and he loves it. The watch has a classic, timeless design. The brown leather strap pairs well with the blue dial. It's water resistant enough for daily use. Highly recommend!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 167},{\"id\": \"R104D\",\"author\": \"Thomas Anderson\",\"rating\": 4,\"title\": \"Good quality, minor issue with strap\",\"comment\": \"The watch itself is excellent - well-built and accurate. The dial is beautiful and easy to read. My only issue is the strap is a bit stiff at first, but it's breaking in. Overall, great watch for the price!\",\"date\": \"2024-09-12\",\"verified\": true,\"helpful\": 134}],\"inStock\": true,\"prime\": true},{\"id\": \"BOOK001\",\"name\": \"The Seven Husbands of Evelyn Hugo - Hardcover\",\"brand\": \"Atria Books\",\"rating\": 4.7,\"numRatings\": 12456,\"price\": 24.99,\"originalPrice\": 32.99,\"mainImage\": \"/src/assets/main-images/book.jpg\",\"images\": [\"/src/assets/main-images/book.jpg\",\"https://images.unsplash.com/photo-1544947950-fa07a98d237f?w=800\",\"https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=800\"],\"description\": \"A captivating novel about a reclusive Hollywood icon who finally decides to tell her story to an unknown journalist. A tale of ambition, friendship, and forbidden love spanning decades.\",\"features\": [\"Bestselling fiction novel\",\"Hardcover edition with dust jacket\",\"416 pages\",\"Perfect for book clubs\"],\"specifications\": {\"Format\": \"Hardcover\",\"Pages\": \"416\",\"Language\": \"English\",\"Publisher\": \"Atria Books\",\"Publication Date\": \"June 13, 2017\",\"ISBN\": \"978-1501139239\"},\"ratingBreakdown\": {\"fiveStars\": 9134,\"fourStars\": 2456,\"threeStars\": 623,\"twoStars\": 178,\"oneStar\": 65},\"reviews\": [{\"id\": \"R200\",\"author\": \"Jennifer Martinez\",\"rating\": 5,\"title\": \"Absolutely captivating\",\"comment\": \"I couldn't put this book down! The story is beautifully written and the characters are so well-developed. Evelyn Hugo's story is both glamorous and heartbreaking. Highly recommend!\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 445},{\"id\": \"R201\",\"author\": \"Sarah Thompson\",\"rating\": 5,\"title\": \"Best book I've read this year\",\"comment\": \"The narrative structure is brilliant - switching between past and present keeps you engaged. The ending was unexpected and perfect. Already planning to read it again!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 312}],\"inStock\": true,\"prime\": true,\"department\": \"Books\",\"materialComposition\": \"Paper, cardboard, ink\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2017-06-13\",\"manufacturer\": \"Atria Books\",\"itemModelNumber\": \"978-1501139239\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Books\",\"Literature & Fiction\",\"Contemporary Fiction\"]},{\"id\": \"BEAUTY001\",\"name\": \"CeraVe Hydrating Facial Cleanser - 473ml\",\"brand\": \"CeraVe\",\"rating\": 4.6,\"numRatings\": 28456,\"price\": 16.99,\"originalPrice\": 19.99,\"mainImage\": \"/src/assets/main-images/cleanser.png\",\"images\": [\"/src/assets/main-images/cleanser.png\",\"https://images.unsplash.com/photo-1556229010-6c3f2c9ca5f8?w=800\",\"https://images.unsplash.com/photo-1612817288484-6f916006741a?w=800\",\"https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?w=800\"],\"description\": \"A gentle, non-foaming cleanser that removes makeup, dirt, and oil without stripping the skin. Formulated with ceramides and hyaluronic acid to restore and maintain the skin's natural barrier.\",\"features\": [\"Non-foaming formula\",\"Contains ceramides and hyaluronic acid\",\"Fragrance-free\",\"Suitable for normal to dry skin\",\"Dermatologist recommended\"],\"specifications\": {\"Size\": \"473ml\",\"Skin Type\": \"Normal to Dry\",\"Key Ingredients\": \"Ceramides, Hyaluronic Acid\",\"Fragrance\": \"Fragrance-Free\",\"Cruelty Free\": \"Yes\"},\"ratingBreakdown\": {\"fiveStars\": 20345,\"fourStars\": 6234,\"threeStars\": 1345,\"twoStars\": 456,\"oneStar\": 176},\"reviews\": [{\"id\": \"R202\",\"author\": \"Emily Chen\",\"rating\": 5,\"title\": \"Game changer for my skin\",\"comment\": \"I have sensitive dry skin and this cleanser is perfect. It doesn't strip my skin or leave it feeling tight. My skin feels clean and hydrated. Worth every penny!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R203\",\"author\": \"Rachel Kim\",\"rating\": 5,\"title\": \"Best cleanser I've tried\",\"comment\": \"I've tried so many cleansers and this one is definitely the best. It removes all my makeup without irritation. My skin has improved so much since using this. Highly recommend!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 412}],\"inStock\": true,\"prime\": true,\"department\": \"Beauty & Personal Care\",\"materialComposition\": \"Water, glycerin, ceramides, hyaluronic acid\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2020-03-15\",\"manufacturer\": \"L'Or\\u00e9al USA\",\"itemModelNumber\": \"CER-CLEANSER-473\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Beauty & Personal Care\",\"Skin Care\",\"Facial Cleansers\"]},{\"id\": \"SPORTS001\",\"name\": \"YETI Rambler 500ml Water Bottle - Stainless Steel\",\"brand\": \"YETI\",\"rating\": 4.8,\"numRatings\": 15678,\"price\": 54.99,\"originalPrice\": 64.99,\"mainImage\": \"/src/assets/main-images/bottle.png\",\"images\": [\"/src/assets/main-images/bottle.png\",\"https://images.unsplash.com/photo-1602143407151-7111542de6e8?w=800\",\"https://images.unsplash.com/photo-1523362628745-0c100150b504?w=800\"],\"description\": \"The YETI Rambler 500ml bottle keeps drinks cold for hours and hot for hours. Made from 18/8 stainless steel with double-wall vacuum insulation. Durable, dishwasher safe, and backed by a 5-year warranty.\",\"features\": [\"Double-wall vacuum insulation\",\"Stainless steel construction\",\"Dishwasher safe\",\"Leak-proof cap\",\"500ml capacity\",\"5-year warranty\"],\"specifications\": {\"Capacity\": \"500ml\",\"Material\": \"18/8 Stainless Steel\",\"Insulation Type\": \"Double-Wall Vacuum\",\"Weight\": \"340g\",\"Dimensions\": \"6.9 x 6.9 x 28.6 cm\",\"Dishwasher Safe\": \"Yes\"},\"ratingBreakdown\": {\"fiveStars\": 13245,\"fourStars\": 1923,\"threeStars\": 345,\"twoStars\": 98,\"oneStar\": 67},\"reviews\": [{\"id\": \"R204\",\"author\": \"Michael Johnson\",\"rating\": 5,\"title\": \"Best water bottle ever\",\"comment\": \"I've had this for 6 months and it's amazing. Ice stays frozen all day, even in hot weather. Build quality is exceptional - dropped it multiple times and not a scratch. Worth the investment!\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 678},{\"id\": \"R205\",\"author\": \"David Brown\",\"rating\": 5,\"title\": \"Perfect for hiking\",\"comment\": \"Took this on a week-long hiking trip and it kept my water cold the entire time. The cap is easy to use with one hand. Durable and well-designed. Highly recommend for outdoor activities!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Sports & Outdoors\",\"materialComposition\": \"18/8 Stainless steel\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2019-05-20\",\"manufacturer\": \"YETI Coolers LLC\",\"itemModelNumber\": \"RAM-500-BLK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Sports & Outdoors\",\"Sports & Fitness\",\"Hydration\",\"Water Bottles\"]},{\"id\": \"PET001\",\"name\": \"KONG Classic Dog Toy - Large\",\"brand\": \"KONG\",\"rating\": 4.7,\"numRatings\": 34256,\"price\": 18.99,\"originalPrice\": 24.99,\"mainImage\": \"/src/assets/main-images/dog_toy.png\",\"images\": [\"/src/assets/main-images/dog_toy.png\",\"https://images.unsplash.com/photo-1534361960057-19889db9621e?w=800\",\"https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=800\",\"https://images.unsplash.com/photo-1552053831-71594a27632d?w=800\"],\"description\": \"The KONG Classic is the original treat-dispensing toy made from natural rubber. Stuff it with treats or peanut butter to keep your dog entertained and mentally stimulated. Perfect for chewers and helps with separation anxiety.\",\"features\": [\"Unique hollow design for treats\",\"Bouncy texture satisfies chewing instincts\",\"Made from natural rubber\",\"Dishwasher safe\",\"Floats in water\",\"Multiple sizes available\"],\"specifications\": {\"Size\": \"Large\",\"Material\": \"Natural Rubber\",\"Recommended Weight\": \"20-35kg\",\"Dishwasher Safe\": \"Yes\",\"Warranty\": \"Limited Lifetime\"},\"ratingBreakdown\": {\"fiveStars\": 25678,\"fourStars\": 6234,\"threeStars\": 1789,\"twoStars\": 345,\"oneStar\": 210},\"reviews\": [{\"id\": \"R206\",\"author\": \"Lisa Anderson\",\"rating\": 5,\"title\": \"My dog loves it!\",\"comment\": \"I stuff this with peanut butter and my dog is entertained for hours. It's durable and has held up to my aggressive chewer. Great for keeping him busy when I'm working from home!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 567},{\"id\": \"R207\",\"author\": \"Tom Wilson\",\"rating\": 5,\"title\": \"Best dog toy purchase\",\"comment\": \"This toy has saved my furniture! My dog used to chew everything but now he's obsessed with this KONG. I fill it with treats and it keeps him occupied. Well worth the price!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 423}],\"inStock\": true,\"prime\": true,\"department\": \"Pet Supplies\",\"materialComposition\": \"Natural rubber\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2018-01-10\",\"manufacturer\": \"KONG Company\",\"itemModelNumber\": \"KONG-LRG-RED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Pet Supplies\",\"Dogs\",\"Toys\",\"Chew Toys\"]},{\"id\": \"GARDEN001\",\"name\": \"Fiskars Ergo D-Handle Shovel - 122cm\",\"brand\": \"Fiskars\",\"rating\": 4.7,\"numRatings\": 8765,\"price\": 59.99,\"originalPrice\": 79.99,\"mainImage\": \"/src/assets/main-images/shovel.png\",\"images\": [\"/src/assets/main-images/shovel.png\",\"https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=800\",\"https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=800\",\"https://images.unsplash.com/photo-1470058869958-2a77ade41c02?w=800\"],\"description\": \"Professional-grade shovel with ergonomic D-handle design for comfortable use. Features rust-resistant steel blade and FiberComp handle. Perfect for digging, transplanting, and general garden work.\",\"features\": [\"Ergonomic D-handle design\",\"Rust-resistant steel blade\",\"FiberComp handle\",\"Comfortable grip\",\"Lifetime warranty\"],\"specifications\": {\"Length\": \"122cm\",\"Blade Material\": \"Rust-Resistant Steel\",\"Handle Material\": \"FiberComp\",\"Weight\": \"1.8kg\",\"Blade Width\": \"20cm\"},\"ratingBreakdown\": {\"fiveStars\": 6234,\"fourStars\": 2012,\"threeStars\": 345,\"twoStars\": 98,\"oneStar\": 76},\"reviews\": [{\"id\": \"R210\",\"author\": \"Robert Martinez\",\"rating\": 5,\"title\": \"Best shovel I've owned\",\"comment\": \"This shovel is incredibly well-made. The ergonomic handle makes it comfortable to use for extended periods. The blade is sharp and cuts through soil easily. Highly recommend for serious gardeners!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R211\",\"author\": \"James White\",\"rating\": 5,\"title\": \"Durable and comfortable\",\"comment\": \"Used this for landscaping my entire yard and it held up perfectly. The handle is comfortable and the blade stays sharp. Much better than cheaper alternatives. Worth the investment!\",\"date\": \"2024-10-13\",\"verified\": true,\"helpful\": 389}],\"inStock\": true,\"prime\": true,\"department\": \"Garden & Outdoor\",\"materialComposition\": \"Steel, FiberComp plastic\",\"countryOfOrigin\": \"Finland\",\"dateFirstAvailable\": \"2020-04-12\",\"manufacturer\": \"Fiskars Corporation\",\"itemModelNumber\": \"FSK-SHOVEL-D-122\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Garden & Outdoor\",\"Garden Tools\",\"Digging Tools\",\"Shovels\"]},{\"id\": \"HEALTH001\",\"name\": \"Fitbit Charge 6 Fitness Tracker\",\"brand\": \"Fitbit\",\"rating\": 4.4,\"numRatings\": 23456,\"price\": 199.99,\"originalPrice\": 249.99,\"mainImage\": \"/src/assets/main-images/fitbit.png\",\"images\": [\"/src/assets/main-images/fitbit.png\",\"https://images.unsplash.com/photo-1579586337278-3befd40fd17a?w=800\",\"https://images.unsplash.com/photo-1544966501-86d23fed7af3?w=800\",\"https://images.unsplash.com/photo-1576243345690-4e4b79d12963?w=800\"],\"description\": \"Advanced fitness tracker with built-in GPS, heart rate monitoring, sleep tracking, and 50+ exercise modes. Features a color touchscreen display, 6+ days battery life, and Google integration.\",\"features\": [\"Built-in GPS\",\"24/7 heart rate monitoring\",\"Sleep tracking\",\"50+ exercise modes\",\"6+ days battery life\",\"Google Wallet & Maps\",\"Water resistant up to 50m\"],\"specifications\": {\"Battery Life\": \"6+ days\",\"Display\": \"Color Touchscreen\",\"Water Resistance\": \"50 meters\",\"Connectivity\": \"Bluetooth, Wi-Fi\",\"Compatible OS\": \"iOS, Android\",\"Weight\": \"29g\"},\"ratingBreakdown\": {\"fiveStars\": 14234,\"fourStars\": 6234,\"threeStars\": 2234,\"twoStars\": 567,\"oneStar\": 187},\"reviews\": [{\"id\": \"R212\",\"author\": \"Maria Garcia\",\"rating\": 5,\"title\": \"Excellent fitness tracker\",\"comment\": \"I've had this for 3 months and love it! The GPS is accurate, heart rate monitoring works well, and battery lasts over a week. The sleep tracking is really insightful. Great value for money!\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 612},{\"id\": \"R213\",\"author\": \"Chris Thompson\",\"rating\": 4,\"title\": \"Good but app could be better\",\"comment\": \"The tracker itself is great - accurate readings and long battery life. My only complaint is the Fitbit app interface could be more intuitive. But overall, I'm happy with the purchase.\",\"date\": \"2024-10-16\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Health & Household\",\"materialComposition\": \"Silicone, glass, aluminum\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2023-09-28\",\"manufacturer\": \"Fitbit Inc.\",\"itemModelNumber\": \"FB512BK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"tomorrow\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": true,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Electronics\",\"Wearable Technology\",\"Fitness Trackers\"]},{\"id\": \"OFFICE001\",\"name\": \"Moleskine Classic Notebook - Large, Hard Cover, Ruled\",\"brand\": \"Moleskine\",\"rating\": 4.6,\"numRatings\": 15234,\"price\": 24.99,\"mainImage\": \"/src/assets/main-images/notebook.png\",\"images\": [\"/src/assets/main-images/notebook.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=800\"],\"description\": \"The iconic Moleskine notebook with hard cover, ruled pages, and elastic closure. Features acid-free paper, ribbon bookmark, and expandable inner pocket. Perfect for notes, journaling, and creative writing.\",\"features\": [\"Hard cover with rounded corners\",\"Ruled pages\",\"Acid-free paper\",\"Ribbon bookmark\",\"Elastic closure\",\"Expandable inner pocket\",\"240 pages\"],\"specifications\": {\"Size\": \"Large (13 x 21 cm)\",\"Pages\": \"240\",\"Page Type\": \"Ruled\",\"Paper Weight\": \"70gsm\",\"Cover\": \"Hard Cover\",\"Color\": \"Black\"},\"ratingBreakdown\": {\"fiveStars\": 10234,\"fourStars\": 4012,\"threeStars\": 845,\"twoStars\": 234,\"oneStar\": 109},\"reviews\": [{\"id\": \"R214\",\"author\": \"Emma Wilson\",\"rating\": 5,\"title\": \"Perfect notebook\",\"comment\": \"I've used Moleskine notebooks for years and they never disappoint. The paper quality is excellent, the binding is durable, and it looks professional. Worth every penny!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 456},{\"id\": \"R215\",\"author\": \"Daniel Lee\",\"rating\": 5,\"title\": \"Great for journaling\",\"comment\": \"I use this for daily journaling and it's perfect. The paper is smooth and doesn't bleed through. The hard cover protects it well. Highly recommend for anyone who loves writing!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 334}],\"inStock\": true,\"prime\": true,\"department\": \"Office Products\",\"materialComposition\": \"Paper, cardboard, elastic, ribbon\",\"countryOfOrigin\": \"Italy\",\"dateFirstAvailable\": \"2015-01-15\",\"manufacturer\": \"Moleskine S.p.A.\",\"itemModelNumber\": \"MOL-NOTE-L-RULED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Office Products\",\"Office Supplies\",\"Notebooks & Writing Pads\",\"Notebooks\"]},{\"id\": \"CLOTH003\",\"name\": \"Calvin Klein Women's Cotton T-Shirt - 3 Pack\",\"brand\": \"Calvin Klein\",\"rating\": 4.5,\"numRatings\": 9876,\"price\": 89.99,\"originalPrice\": 119.99,\"mainImage\": \"/src/assets/main-images/women-shirt.png\",\"images\": [\"/src/assets/main-images/women-shirt.png\",\"https://images.unsplash.com/photo-1618354691373-d851c5c3a990?w=800\",\"https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?w=800\"],\"description\": \"Classic crew neck t-shirts made from soft cotton blend. Perfect for everyday wear, these versatile basics feature a relaxed fit and come in a convenient 3-pack. Available in multiple color combinations.\",\"features\": [\"3-pack of t-shirts\",\"100% cotton\",\"Crew neck\",\"Relaxed fit\",\"Machine washable\",\"Essential wardrobe basics\"],\"specifications\": {\"Material\": \"100% Cotton\",\"Fit\": \"Relaxed\",\"Neck Style\": \"Crew Neck\",\"Care Instructions\": \"Machine Wash\",\"Package Contents\": \"3 T-Shirts\"},\"swatches\": [{\"colorName\": \"White/Grey/Black\",\"hex\": \"#FFFFFF\",\"image\": \"https://images.unsplash.com/photo-1618354691373-d851c5c3a990?w=800\"},{\"colorName\": \"Black/Grey/White\",\"hex\": \"#000000\",\"image\": \"https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=800\"}],\"sizes\": [\"XS\",\"S\",\"M\",\"L\",\"XL\"],\"ratingBreakdown\": {\"fiveStars\": 6234,\"fourStars\": 2543,\"threeStars\": 789,\"twoStars\": 234,\"oneStar\": 76},\"reviews\": [{\"id\": \"R216\",\"author\": \"Sophie Brown\",\"rating\": 5,\"title\": \"Perfect basics\",\"comment\": \"These t-shirts are soft, comfortable, and fit perfectly. Great quality for the price. I've washed them multiple times and they still look new. Perfect for everyday wear!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R217\",\"author\": \"Amanda Davis\",\"rating\": 4,\"title\": \"Good quality, runs slightly small\",\"comment\": \"The fabric is soft and the quality is great. I ordered my usual size and they fit but are a bit snug. Might size up next time. Otherwise, very happy with the purchase!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 389}],\"inStock\": true,\"prime\": true,\"department\": \"Women's Clothing\",\"materialComposition\": \"100% Cotton\",\"countryOfOrigin\": \"Bangladesh\",\"dateFirstAvailable\": \"2023-07-20\",\"manufacturer\": \"Calvin Klein Inc.\",\"itemModelNumber\": \"CK-TEE-3PK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Women\",\"Clothing\",\"Tops & Tees\"]},{\"id\": \"GROCERY001\",\"name\": \"Twinings English Breakfast Tea - 200 Tea Bags\",\"brand\": \"Twinings\",\"rating\": 4.7,\"numRatings\": 18456,\"price\": 24.99,\"originalPrice\": 29.99,\"mainImage\": \"/src/assets/main-images/tea.png\",\"images\": [\"/src/assets/main-images/tea.png\",\"https://images.unsplash.com/photo-1556679343-c7306c1976bc?w=800\",\"https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=800\",\"https://images.unsplash.com/photo-1576092768241-dec231879fc3?w=800\"],\"description\": \"Classic English Breakfast tea blend from Twinings. A robust, full-bodied black tea perfect for starting your day. Made from quality black tea leaves sourced from tea gardens around the world. 200 individually wrapped tea bags.\",\"features\": [\"200 tea bags\",\"Individually wrapped\",\"Classic English Breakfast blend\",\"Full-bodied flavor\",\"Premium black tea\",\"Suitable for breakfast or anytime\"],\"specifications\": {\"Quantity\": \"200 Tea Bags\",\"Type\": \"Black Tea\",\"Caffeine Content\": \"High\",\"Packaging\": \"Individually Wrapped\",\"Origin\": \"Blend of tea gardens\",\"Best Before\": \"2 years from purchase\"},\"ratingBreakdown\": {\"fiveStars\": 13245,\"fourStars\": 4123,\"threeStars\": 823,\"twoStars\": 178,\"oneStar\": 87},\"reviews\": [{\"id\": \"R218\",\"author\": \"Margaret Smith\",\"rating\": 5,\"title\": \"Best English Breakfast tea\",\"comment\": \"I've been drinking Twinings English Breakfast for years and it's the best. Strong, full-bodied flavor that's perfect in the morning. Great value for 200 bags. Highly recommend!\",\"date\": \"2024-10-21\",\"verified\": true,\"helpful\": 567},{\"id\": \"R219\",\"author\": \"Robert Taylor\",\"rating\": 5,\"title\": \"Excellent quality\",\"comment\": \"The tea is consistently high quality. Each bag makes a strong, flavorful cup. I drink 2-3 cups a day and this supply lasts me months. Great value and great taste!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Grocery & Gourmet Food\",\"materialComposition\": \"Black tea leaves\",\"countryOfOrigin\": \"United Kingdom\",\"dateFirstAvailable\": \"2019-11-10\",\"manufacturer\": \"Twinings of London\",\"itemModelNumber\": \"TWN-ENG-200\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": true,\"breadcrumbs\": [\"Grocery & Gourmet Food\",\"Beverages\",\"Tea\",\"Black Tea\"]}],\"filters\": {\"shipsFromUnitedStates\": false,\"internationalShipping\": false,\"deliveryTomorrow\": false,\"deliveryTwoDays\": false,\"freeDelivery\": false,\"condition\": [],\"isGlobalStore\": false,\"includeOutOfStock\": false,\"minPrice\": 0,\"maxPrice\": 1000000,\"minRating\": null},\"filteredProducts\": [{\"id\": \"OFFICE001\",\"name\": \"Moleskine Classic Notebook - Large, Hard Cover, Ruled\",\"brand\": \"Moleskine\",\"rating\": 4.6,\"numRatings\": 15234,\"price\": 24.99,\"mainImage\": \"/src/assets/main-images/notebook.png\",\"images\": [\"/src/assets/main-images/notebook.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=800\"],\"description\": \"The iconic Moleskine notebook with hard cover, ruled pages, and elastic closure. Features acid-free paper, ribbon bookmark, and expandable inner pocket. Perfect for notes, journaling, and creative writing.\",\"features\": [\"Hard cover with rounded corners\",\"Ruled pages\",\"Acid-free paper\",\"Ribbon bookmark\",\"Elastic closure\",\"Expandable inner pocket\",\"240 pages\"],\"specifications\": {\"Size\": \"Large (13 x 21 cm)\",\"Pages\": \"240\",\"Page Type\": \"Ruled\",\"Paper Weight\": \"70gsm\",\"Cover\": \"Hard Cover\",\"Color\": \"Black\"},\"ratingBreakdown\": {\"fiveStars\": 10234,\"fourStars\": 4012,\"threeStars\": 845,\"twoStars\": 234,\"oneStar\": 109},\"reviews\": [{\"id\": \"R214\",\"author\": \"Emma Wilson\",\"rating\": 5,\"title\": \"Perfect notebook\",\"comment\": \"I've used Moleskine notebooks for years and they never disappoint. The paper quality is excellent, the binding is durable, and it looks professional. Worth every penny!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 456},{\"id\": \"R215\",\"author\": \"Daniel Lee\",\"rating\": 5,\"title\": \"Great for journaling\",\"comment\": \"I use this for daily journaling and it's perfect. The paper is smooth and doesn't bleed through. The hard cover protects it well. Highly recommend for anyone who loves writing!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 334}],\"inStock\": true,\"prime\": true,\"department\": \"Office Products\",\"materialComposition\": \"Paper, cardboard, elastic, ribbon\",\"countryOfOrigin\": \"Italy\",\"dateFirstAvailable\": \"2015-01-15\",\"manufacturer\": \"Moleskine S.p.A.\",\"itemModelNumber\": \"MOL-NOTE-L-RULED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Office Products\",\"Office Supplies\",\"Notebooks & Writing Pads\",\"Notebooks\"]}],\"selectedProduct\": null,\"currentUser\": {\"name\": \"John Doe\",\"searches\": [],\"viewedProducts\": [],\"location\": \"Sydney 2000\"}}",
9
  "instructions": "{\"user_prompt\": \"Type in \\\"book\\\" to the search bar from the home page and once on the search page, select the product with id OFFICE001.\",\"success_criteria\": \"The currentPage should be \\\"product\\\" and the selectedProduct should have the id OFFICE001. The searchQuery should be 'book'.\"}",
10
  "reward_function": "_validate_navigate_from_search_page_to_product_page",
 
4
  "name": "Navigate from search page to product page",
5
  "description": "From the search page, click on a given product to get to the product page.",
6
  "tier": "pro",
7
+ "environment": "{\"type\": \"url\",\"path\": \"https://dtb201xr8xdfo.cloudfront.net/index.html\"}",
8
  "initial_state": "{\"currentPage\": \"search\",\"searchQuery\": \"book\",\"products\": [{\"id\": \"B08N5WRWNW\",\"name\": \"Sony WH-1000XM5 Wireless Industry Leading Noise Canceling Headphones\",\"brand\": \"Sony\",\"rating\": 3.6,\"numRatings\": 12847,\"price\": 449.99,\"originalPrice\": 549.99,\"mainImage\": \"/src/assets/main-images/sony.png\",\"images\": [\"/src/assets/main-images/sony.png\",\"https://images.unsplash.com/photo-1546435770-a3e426bf472b?w=800\",\"https://images.unsplash.com/photo-1484704849700-f032a568e944?w=800\"],\"description\": \"Experience the best noise canceling technology with the Sony WH-1000XM5. These premium wireless headphones feature industry-leading noise cancellation, exceptional sound quality, and up to 30 hours of battery life. Perfect for travel, work, or relaxation.\",\"features\": [\"Industry-leading noise cancellation with 8 microphones\",\"30-hour battery life with quick charging (3 min charge = 3 hours playback)\",\"Premium sound quality with LDAC audio coding\",\"Multipoint connection - connect two devices simultaneously\",\"Ultra-comfortable design with soft fit leather\",\"Speak-to-chat technology automatically pauses music\"],\"specifications\": {\"Battery Life\": \"30 hours\",\"Charging Time\": \"3.5 hours\",\"Weight\": \"250g\",\"Bluetooth Version\": \"5.2\",\"Driver Size\": \"30mm\",\"Frequency Response\": \"4Hz-40,000Hz\"},\"ratingBreakdown\": {\"fiveStars\": 8934,\"fourStars\": 2456,\"threeStars\": 4012,\"twoStars\": 345,\"oneStar\": 221},\"reviews\": [{\"id\": \"R1\",\"author\": \"Sarah Mitchel\",\"rating\": 5,\"title\": \"Best headphones I've ever owned\",\"comment\": \"The noise cancellation is absolutely incredible. I use these on my daily commute and can't hear a thing. The sound quality is pristine, and they're so comfortable I forget I'm wearing them. Battery life easily gets me through a full week. Worth every penny!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 234},{\"id\": \"R2\",\"author\": \"James Chen\",\"rating\": 5,\"title\": \"Perfect for working from home\",\"comment\": \"These headphones have been a game-changer for my home office setup. The noise cancellation blocks out all the neighborhood sounds, and the microphone quality is excellent for video calls. My colleagues say I sound crystal clear.\",\"date\": \"2024-10-08\",\"verified\": true,\"helpful\": 178},{\"id\": \"R3\",\"author\": \"Emma Rodriguez\",\"rating\": 4,\"title\": \"Great but pricey\",\"comment\": \"The sound quality and noise cancellation are top-notch. My only complaint is the price - they're quite expensive. But if you can afford them, they're definitely worth it. The comfort level is outstanding for long listening sessions.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 142},{\"id\": \"R4\",\"author\": \"Michael Thompson\",\"rating\": 5,\"title\": \"Amazing for travel\",\"comment\": \"Just took these on a 14-hour flight and they were perfect. The noise cancellation made the engine noise disappear completely. Battery lasted the entire journey with power to spare. Highly recommend for frequent travelers!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 98},{\"id\": \"R5\",\"author\": \"Lisa Park\",\"rating\": 3,\"title\": \"Good but not perfect for small heads\",\"comment\": \"Sound quality is excellent and the ANC works great. However, I have a smaller head and they feel a bit loose even at the tightest setting. They occasionally slip during workouts. Otherwise, a solid product.\",\"date\": \"2024-09-12\",\"verified\": true,\"helpful\": 67},{\"id\": \"R5A\",\"author\": \"Carlos Mendez\",\"rating\": 5,\"title\": \"Outstanding sound quality\",\"comment\": \"The LDAC audio coding really makes a difference. Music sounds incredibly detailed and rich. The bass is punchy without being overwhelming, and the highs are crystal clear. Best audio experience I've had with wireless headphones.\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 156},{\"id\": \"R5B\",\"author\": \"Anna Williams\",\"rating\": 4,\"title\": \"Excellent ANC, minor issues\",\"comment\": \"The noise cancellation is phenomenal - blocks out everything. The speak-to-chat feature is clever but sometimes activates when I'm just humming. Overall, these are fantastic headphones for the price.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 124},{\"id\": \"R5C\",\"author\": \"David Kim\",\"rating\": 5,\"title\": \"Worth upgrading from XM4\",\"comment\": \"I had the XM4s and these are a noticeable improvement. Better noise cancellation, more comfortable pads, and the multipoint connection is a game-changer. Battery life is still excellent. Highly recommend the upgrade!\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 203}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, metal, synthetic leather\",\"countryOfOrigin\": \"Malaysia\",\"dateFirstAvailable\": \"2022-05-19\",\"manufacturer\": \"Sony Corporation\",\"itemModelNumber\": \"WH-1000XM5\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Headphones\",\"Wireless Headphones\"]},{\"id\": \"B09G9FPHY6\",\"name\": \"Apple AirPods Pro (2nd Generation) with MagSafe Charging Case\",\"brand\": \"Apple\",\"rating\": 4.7,\"numRatings\": 24532,\"price\": 329,\"originalPrice\": 399,\"mainImage\": \"/src/assets/main-images/airpods.png\",\"images\": [\"/src/assets/main-images/airpods.png\",\"https://images.unsplash.com/photo-1588423771073-b8903fbb85b5?w=800\",\"https://images.unsplash.com/photo-1572569511254-d8f925fe2cbb?w=800\",\"https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=800\"],\"description\": \"The Apple AirPods Pro (2nd generation) deliver an exceptional listening experience with up to 2x more Active Noise Cancellation than the previous generation. Features include Adaptive Transparency, Personalized Spatial Audio, and a MagSafe Charging Case.\",\"features\": [\"Up to 2x more Active Noise Cancellation\",\"Adaptive Transparency lets outside sound in\",\"Personalized Spatial Audio with dynamic head tracking\",\"Four pairs of silicone tips (XS, S, M, L)\",\"Touch control for volume adjustment\",\"Up to 6 hours listening time with ANC on\",\"Sweat and water resistant (IPX4)\"],\"specifications\": {\"Battery Life (Earbuds)\": \"6 hours\",\"Battery Life (With Case)\": \"30 hours\",\"Charging\": \"MagSafe, Wireless, Lightning\",\"Bluetooth\": \"5.3\",\"Chip\": \"H2\",\"Water Resistance\": \"IPX4\"},\"ratingBreakdown\": {\"fiveStars\": 18245,\"fourStars\": 4327,\"threeStars\": 1234,\"twoStars\": 456,\"oneStar\": 270},\"reviews\": [{\"id\": \"R6\",\"author\": \"David Kim\",\"rating\": 5,\"title\": \"Perfect integration with iPhone\",\"comment\": \"If you have an iPhone, these are a no-brainer. The seamless connection, automatic switching between devices, and the Find My integration are incredible. Sound quality is great and the ANC is very effective.\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 445},{\"id\": \"R7\",\"author\": \"Rachel Green\",\"rating\": 5,\"title\": \"Best earbuds I've tried\",\"comment\": \"The fit is perfect with the different tip sizes, and they stay in my ears even during runs. The noise cancellation is impressive for such small earbuds. Spatial audio is a game-changer for movies!\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 312},{\"id\": \"R8\",\"author\": \"Tom Anderson\",\"rating\": 4,\"title\": \"Great but expensive\",\"comment\": \"These are fantastic earbuds with excellent features, but the price is steep. If you're invested in the Apple ecosystem, they're worth it. The transparency mode is particularly useful for staying aware of surroundings.\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 198},{\"id\": \"R9\",\"author\": \"Jennifer Wu\",\"rating\": 5,\"title\": \"Amazing for calls\",\"comment\": \"I use these primarily for work calls and they're incredible. The microphone quality is crystal clear, and the noise cancellation means people can't hear my background noise. Battery life is solid too.\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 156},{\"id\": \"R10\",\"author\": \"Mark Stevens\",\"rating\": 4,\"title\": \"Excellent sound, minor fit issues\",\"comment\": \"Sound quality is top-notch and features are impressive. My only issue is that during intense workouts, they occasionally feel like they might fall out. Otherwise, highly recommended!\",\"date\": \"2024-09-29\",\"verified\": true,\"helpful\": 89},{\"id\": \"R10A\",\"author\": \"Olivia Brown\",\"rating\": 5,\"title\": \"Perfect for daily use\",\"comment\": \"I wear these pretty much all day - commute, gym, work calls. The battery life with the case is amazing. The adaptive transparency is a standout feature - it automatically adjusts when loud sounds occur. Genius!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 267},{\"id\": \"R10B\",\"author\": \"Ryan Taylor\",\"rating\": 5,\"title\": \"Best upgrade from 1st gen\",\"comment\": \"Upgraded from the first gen AirPods Pro and the difference is night and day. The ANC is significantly better, and the touch controls for volume are so convenient. The MagSafe charging is a nice bonus too.\",\"date\": \"2024-10-01\",\"verified\": true,\"helpful\": 189},{\"id\": \"R10C\",\"author\": \"Maria Garcia\",\"rating\": 4,\"title\": \"Great but price could be lower\",\"comment\": \"These are excellent earbuds with great sound and features. The personalization with iOS is fantastic. Only reason for 4 stars is the price - they're quite expensive. But if you can afford them, they're worth it.\",\"date\": \"2024-09-26\",\"verified\": true,\"helpful\": 145}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, silicone, metal\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2022-09-23\",\"manufacturer\": \"Apple Inc.\",\"itemModelNumber\": \"MTJV3AM/A\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"tomorrow\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": true,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Headphones\",\"Wireless Earbuds\"]},{\"id\": \"B0BSHF7WHW\",\"name\": \"Kindle Paperwhite (16 GB) \\u2013 Now with a 6.8\\\" display and adjustable warm light\",\"brand\": \"Amazon\",\"rating\": 5,\"numRatings\": 18923,\"price\": 189,\"originalPrice\": 229,\"mainImage\": \"/src/assets/main-images/kindle.png\",\"images\": [\"/src/assets/main-images/kindle.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1532012197267-da84d127e765?w=800\"],\"description\": \"The Kindle Paperwhite features a glare-free 6.8\\\" display that reads like real paper, even in bright sunlight. With adjustable warm light and up to 10 weeks of battery life, it's perfect for reading anytime, anywhere. Waterproof design (IPX8) means you can read in the bath or by the pool.\",\"features\": [\"6.8\\\" glare-free display with 300 ppi\",\"Adjustable warm light for comfortable reading\",\"Up to 10 weeks battery life\",\"Waterproof (IPX8) - safe from accidental water exposure\",\"16 GB storage - holds thousands of books\",\"Thin and lightweight design\",\"Flush-front design with uniform lighting\"],\"specifications\": {\"Display Size\": \"6.8 inches\",\"Resolution\": \"300 ppi\",\"Storage\": \"16 GB\",\"Battery Life\": \"Up to 10 weeks\",\"Weight\": \"205g\",\"Water Resistance\": \"IPX8\",\"Connectivity\": \"Wi-Fi\"},\"ratingBreakdown\": {\"fiveStars\": 15234,\"fourStars\": 2678,\"threeStars\": 634,\"twoStars\": 234,\"oneStar\": 143},\"reviews\": [{\"id\": \"R11\",\"author\": \"Amanda Foster\",\"rating\": 5,\"title\": \"Perfect for avid readers\",\"comment\": \"I read every single day and this Kindle is absolutely perfect. The warm light feature is a game-changer for nighttime reading - no more eye strain. Battery lasts forever, and the larger screen is so much better than my old Kindle.\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 567},{\"id\": \"R12\",\"author\": \"Robert Martinez\",\"rating\": 5,\"title\": \"Worth every penny\",\"comment\": \"I was hesitant to spend this much on an e-reader, but I'm so glad I did. The reading experience is incredible - just like real paper. Being waterproof is a huge bonus. I read in the bathtub all the time now!\",\"date\": \"2024-10-16\",\"verified\": true,\"helpful\": 423},{\"id\": \"R13\",\"author\": \"Sophie Turner\",\"rating\": 5,\"title\": \"Love the larger screen\",\"comment\": \"Upgraded from the basic Kindle and the larger screen makes such a difference. I can increase the font size without feeling cramped. The warm light is gentle on the eyes. Highly recommend!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 298},{\"id\": \"R14\",\"author\": \"Chris Johnson\",\"rating\": 4,\"title\": \"Great device, wish it had page turn buttons\",\"comment\": \"The Kindle is excellent overall - great screen, comfortable to hold, and waterproof. My only wish is that it had physical page turn buttons like the Oasis. But for the price, it's hard to complain.\",\"date\": \"2024-10-04\",\"verified\": true,\"helpful\": 187},{\"id\": \"R15\",\"author\": \"Emily Chen\",\"rating\": 5,\"title\": \"Best purchase this year\",\"comment\": \"I'm reading so much more now! The screen is beautiful, battery life is phenomenal, and I love being able to adjust the warmth. It's lightweight enough to hold for hours. Couldn't be happier with this purchase.\",\"date\": \"2024-09-27\",\"verified\": true,\"helpful\": 145},{\"id\": \"R15A\",\"author\": \"Thomas Wilson\",\"rating\": 5,\"title\": \"Excellent for travel\",\"comment\": \"Perfect for long flights and vacations. I can carry hundreds of books without any weight. The waterproof feature gives me peace of mind near the pool. The 16GB storage is more than enough for my entire library.\",\"date\": \"2024-10-08\",\"verified\": true,\"helpful\": 234},{\"id\": \"R15B\",\"author\": \"Jessica Lee\",\"rating\": 4,\"title\": \"Great upgrade\",\"comment\": \"Upgraded from an older Kindle and the improvements are noticeable. The screen is sharper, the warm light is wonderful, and the flush design looks modern. Only minor complaint is the charging port - wish it was USB-C.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 178},{\"id\": \"R15C\",\"author\": \"Daniel Kim\",\"rating\": 5,\"title\": \"Perfect reading device\",\"comment\": \"The 6.8 inch screen is the sweet spot - big enough for comfortable reading but still portable. I love that I can read in direct sunlight without any glare. The battery truly lasts weeks as advertised. Highly recommend!\",\"date\": \"2024-09-22\",\"verified\": true,\"helpful\": 201}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Plastic, glass, metal\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2021-10-27\",\"manufacturer\": \"Amazon.com Services LLC\",\"itemModelNumber\": \"B0BSHF7WHW\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"E-Readers & Accessories\",\"Kindle E-Readers\"]},{\"id\": \"B09B9VFKH5\",\"name\": \"LEGO Star Wars Millennium Falcon 75192 Building Kit\",\"brand\": \"LEGO\",\"rating\": 4.9,\"numRatings\": 8734,\"price\": 1299.99,\"mainImage\": \"/src/assets/main-images/lego.png\",\"images\": [\"/src/assets/main-images/lego.png\",\"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800\"],\"description\": \"The ultimate LEGO Star Wars Millennium Falcon! This highly detailed model features 7,541 pieces and measures over 8 inches high, 33 inches long, and 22 inches wide. Includes iconic characters and intricate interior details. Perfect for display and collectors.\",\"features\": [\"7,541 pieces for an immersive building experience\",\"Includes 7 minifigures and 2 droids\",\"Highly detailed exterior with sensor dish and removable panels\",\"Interior includes cockpit, cargo area, and hidden smuggling compartments\",\"Rotating top and bottom gun turrets\",\"Display stand included\",\"Suitable for ages 16+\"],\"specifications\": {\"Piece Count\": \"7,541\",\"Dimensions\": \"33\\\" L x 22\\\" W x 8\\\" H\",\"Weight\": \"13.5 kg\",\"Minifigures\": \"7 included\",\"Recommended Age\": \"16+\",\"Theme\": \"Star Wars\"},\"ratingBreakdown\": {\"fiveStars\": 8234,\"fourStars\": 378,\"threeStars\": 78,\"twoStars\": 28,\"oneStar\": 16},\"reviews\": [{\"id\": \"R16\",\"author\": \"Nathan Brooks\",\"rating\": 5,\"title\": \"The ultimate LEGO experience\",\"comment\": \"Took me about 3 weeks to complete, building a few hours each evening. This is an absolute masterpiece. The level of detail is mind-blowing. Every Star Wars fan needs this in their collection. Yes, it's expensive, but worth every cent.\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 789},{\"id\": \"R17\",\"author\": \"Kelly Peterson\",\"rating\": 5,\"title\": \"Best LEGO set ever made\",\"comment\": \"Built this with my teenage son over the holidays. It was such a fun bonding experience. The build is complex but the instructions are clear. The finished model is stunning and takes pride of place in our living room.\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 623},{\"id\": \"R18\",\"author\": \"Greg Morrison\",\"rating\": 5,\"title\": \"Engineering marvel\",\"comment\": \"The engineering that went into designing this set is incredible. So many clever building techniques. The interior is fully detailed and accessible. Display stand works perfectly. This is LEGO at its finest.\",\"date\": \"2024-10-07\",\"verified\": true,\"helpful\": 534},{\"id\": \"R19\",\"author\": \"Michelle Davis\",\"rating\": 5,\"title\": \"Worth the investment\",\"comment\": \"Yes, it's pricey, but this is a genuine collector's item. The attention to detail is phenomenal. I display it in my office and everyone who sees it is blown away. If you're a Star Wars fan, you won't regret this purchase.\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 412},{\"id\": \"R20\",\"author\": \"Paul Richardson\",\"rating\": 5,\"title\": \"Challenging and rewarding build\",\"comment\": \"This isn't a quick build - it took me about 40 hours total. But every minute was enjoyable. The final result is spectacular. Make sure you have enough space to display it properly - it's HUGE!\",\"date\": \"2024-09-23\",\"verified\": true,\"helpful\": 356},{\"id\": \"R20A\",\"author\": \"Stephanie Adams\",\"rating\": 5,\"title\": \"Incredible detail\",\"comment\": \"The amount of detail in this set is absolutely staggering. Every panel, every interior compartment, it's all there. The minifigures are great too. This is definitely a centerpiece display piece. Worth every penny!\",\"date\": \"2024-10-05\",\"verified\": true,\"helpful\": 445},{\"id\": \"R20B\",\"author\": \"Andrew Foster\",\"rating\": 4,\"title\": \"Amazing but challenging\",\"comment\": \"This is an incredible set but it's definitely not for beginners. The build is complex and requires patience. Some steps are quite repetitive. But the end result is absolutely stunning. Just make sure you have the space!\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 312},{\"id\": \"R20C\",\"author\": \"Rachel Martinez\",\"rating\": 5,\"title\": \"Perfect gift for collectors\",\"comment\": \"Bought this as a gift for my husband and he absolutely loved it. Took him about 2 months of weekend building sessions. The display stand is perfect and it looks amazing in our collection room. A true masterpiece!\",\"date\": \"2024-09-18\",\"verified\": true,\"helpful\": 278}],\"inStock\": true,\"prime\": false,\"department\": \"Toys & Games\",\"materialComposition\": \"ABS plastic\",\"countryOfOrigin\": \"Denmark\",\"dateFirstAvailable\": \"2017-09-14\",\"manufacturer\": \"The LEGO Group\",\"itemModelNumber\": \"75192\",\"shipsFromUnitedStates\": false,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": false,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": true,\"breadcrumbs\": [\"Toys & Games\",\"Building Toys\",\"LEGO\",\"LEGO Star Wars\"]},{\"id\": \"B08L5VNJ2P\",\"name\": \"Instant Pot Duo Plus 9-in-1 Electric Pressure Cooker, 6 Quart\",\"brand\": \"Instant Pot\",\"rating\": 4.7,\"numRatings\": 45628,\"price\": 149.95,\"originalPrice\": 199.95,\"mainImage\": \"/src/assets/main-images/pot.png\",\"images\": [\"/src/assets/main-images/pot.png\",\"https://images.unsplash.com/photo-1556910110-a5a63dfd393c?w=800\",\"https://images.unsplash.com/photo-1556910096-6f5e72db6803?w=800\",\"https://images.unsplash.com/photo-1604328471151-b52226907017?w=800\"],\"description\": \"The Instant Pot Duo Plus is a 9-in-1 programmable cooker that can replace your pressure cooker, slow cooker, rice cooker, steamer, saut\\u00e9 pan, yogurt maker, warmer, sterilizer, and sous vide. With 15 Smart Programs, cooking has never been easier or faster.\",\"features\": [\"9-in-1 functionality: Pressure Cook, Slow Cook, Rice Cooker, Steamer, Saut\\u00e9, Yogurt Maker, Warmer, Sous Vide, Sterilizer\",\"15 customizable Smart Programs\",\"6-quart capacity - perfect for families\",\"Stainless steel inner pot (dishwasher safe)\",\"10+ safety features including overheat protection\",\"Delay start timer up to 24 hours\",\"Free app with 1900+ recipes\"],\"specifications\": {\"Capacity\": \"6 Quarts\",\"Power\": \"1000W\",\"Voltage\": \"240V\",\"Material\": \"Stainless Steel\",\"Weight\": \"5.8 kg\",\"Dimensions\": \"32.5 x 31.2 x 31.7 cm\",\"Programs\": \"15\"},\"ratingBreakdown\": {\"fiveStars\": 34256,\"fourStars\": 8234,\"threeStars\": 2134,\"twoStars\": 678,\"oneStar\": 326},\"reviews\": [{\"id\": \"R21\",\"author\": \"Jessica Martinez\",\"rating\": 5,\"title\": \"Life-changing kitchen appliance\",\"comment\": \"I use this literally every day. Meal prep is so much faster now. Rice comes out perfect every time, and I can make a whole chicken dinner in 30 minutes. If you're on the fence, just buy it. You won't regret it!\",\"date\": \"2024-10-24\",\"verified\": true,\"helpful\": 1234},{\"id\": \"R22\",\"author\": \"Daniel Cooper\",\"rating\": 5,\"title\": \"Best kitchen investment\",\"comment\": \"This thing has replaced like 5 appliances in my kitchen. The yogurt function alone makes it worth it. Pressure cooking is fast and everything comes out tender. Learning curve is minimal with all the preset programs.\",\"date\": \"2024-10-21\",\"verified\": true,\"helpful\": 987},{\"id\": \"R23\",\"author\": \"Lauren White\",\"rating\": 4,\"title\": \"Great but takes up counter space\",\"comment\": \"The Instant Pot works brilliantly and I love using it. My only complaint is that it's quite large and takes up significant counter space. But the functionality makes up for it. Makes amazing pulled pork!\",\"date\": \"2024-10-17\",\"verified\": true,\"helpful\": 756},{\"id\": \"R24\",\"author\": \"Ryan Phillips\",\"rating\": 5,\"title\": \"Perfect for busy families\",\"comment\": \"As a working parent, this has been a game-changer. I can throw in ingredients in the morning, set the delay timer, and come home to a hot meal. The slow cooker function is great for soups and stews.\",\"date\": \"2024-10-13\",\"verified\": true,\"helpful\": 645},{\"id\": \"R25\",\"author\": \"Nicole Evans\",\"rating\": 5,\"title\": \"Worth every cent\",\"comment\": \"I was skeptical about the hype but this really delivers. Beans cook in 25 minutes without pre-soaking, rice is perfect, and the saut\\u00e9 function means I can brown meat right in the pot. Cleanup is easy too!\",\"date\": \"2024-10-09\",\"verified\": true,\"helpful\": 534},{\"id\": \"R25A\",\"author\": \"Patrick O'Brien\",\"rating\": 5,\"title\": \"Game changer for meal prep\",\"comment\": \"I meal prep every Sunday and this has cut my time in half. I can cook multiple things at once using the stacking method. The keep warm function is perfect too. Best kitchen purchase I've made in years!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 678},{\"id\": \"R25B\",\"author\": \"Kimberly Chang\",\"rating\": 4,\"title\": \"Great but intimidating at first\",\"comment\": \"Took me a few tries to get comfortable with it, but now I use it all the time. The pressure release can be a bit scary at first, but once you get the hang of it, it's easy. Makes the best hard-boiled eggs!\",\"date\": \"2024-10-07\",\"verified\": true,\"helpful\": 523},{\"id\": \"R25C\",\"author\": \"Michael Roberts\",\"rating\": 5,\"title\": \"Perfect for cooking meat\",\"comment\": \"The pressure cooking function makes the most tender meat I've ever cooked. Ribs fall off the bone, chicken is perfectly juicy. The 6-quart size is perfect for my family of four. Can't recommend enough!\",\"date\": \"2024-09-29\",\"verified\": true,\"helpful\": 456}],\"inStock\": true,\"prime\": true,\"department\": \"Home & Kitchen\",\"materialComposition\": \"Stainless steel, plastic, silicone\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2019-03-15\",\"manufacturer\": \"Instant Brands Inc.\",\"itemModelNumber\": \"DUO60\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Home & Kitchen\",\"Kitchen & Dining\",\"Small Appliances\",\"Pressure Cookers\"]},{\"id\": \"B0B2QJZF8D\",\"name\": \"Anker PowerCore 20000mAh Portable Charger - Ultra-High Capacity Power Bank\",\"brand\": \"Anker\",\"rating\": 4.6,\"numRatings\": 32145,\"price\": 79.99,\"originalPrice\": 99.99,\"mainImage\": \"/src/assets/main-images/powerbank.png\",\"images\": [\"/src/assets/main-images/powerbank.png\",\"https://images.unsplash.com/photo-1624823183493-ed5832f48f18?w=800\"],\"description\": \"The Anker PowerCore 20000 is one of the smallest and lightest 20,000mAh portable chargers on the market. Featuring PowerIQ and VoltageBoost technology, it ensures the fastest possible charge for your devices. Perfect for travel, camping, or everyday use.\",\"features\": [\"Ultra-high 20,000mAh capacity - charge iPhone 13 4+ times\",\"Dual USB ports charge two devices simultaneously\",\"PowerIQ and VoltageBoost for optimized charging\",\"High-speed recharging with 2A input\",\"Premium aluminum alloy exterior\",\"MultiProtect safety system\",\"Includes travel pouch and micro USB cable\"],\"specifications\": {\"Capacity\": \"20,000mAh / 72Wh\",\"Input\": \"5V/2A\",\"Output\": \"5V/4.8A (2.4A per port)\",\"Weight\": \"356g\",\"Dimensions\": \"15.8 x 7.4 x 1.9 cm\",\"Recharge Time\": \"10 hours\"},\"ratingBreakdown\": {\"fiveStars\": 22345,\"fourStars\": 7234,\"threeStars\": 1678,\"twoStars\": 567,\"oneStar\": 321},\"reviews\": [{\"id\": \"R26\",\"author\": \"Kevin Walsh\",\"rating\": 5,\"title\": \"Incredible capacity in a compact size\",\"comment\": \"This power bank is amazing! I went on a 4-day camping trip and it kept my phone and tablet charged the entire time. It's surprisingly compact for the capacity. Charges devices quickly too. Anker quality as always!\",\"date\": \"2024-10-23\",\"verified\": true,\"helpful\": 892},{\"id\": \"R27\",\"author\": \"Samantha Lee\",\"rating\": 5,\"title\": \"Perfect for travel\",\"comment\": \"I travel frequently for work and this has been a lifesaver. Fits easily in my bag and provides multiple charges for my phone and wireless earbuds. The dual ports are super convenient when traveling with my partner.\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 723},{\"id\": \"R28\",\"author\": \"Brian Foster\",\"rating\": 4,\"title\": \"Great product, takes a while to recharge\",\"comment\": \"The power bank itself is excellent - great capacity and charges devices quickly. Only downside is that it takes quite a while to fully recharge the bank itself (around 10 hours). Plan accordingly!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 589},{\"id\": \"R29\",\"author\": \"Ashley Morgan\",\"rating\": 5,\"title\": \"Essential for festivals\",\"comment\": \"Took this to a 3-day music festival and it was perfect. Kept my phone alive the entire time with battery to spare. Love that I can charge my phone and my friend's phone simultaneously. Solid build quality too.\",\"date\": \"2024-10-06\",\"verified\": true,\"helpful\": 467},{\"id\": \"R30\",\"author\": \"Timothy Green\",\"rating\": 5,\"title\": \"Anker never disappoints\",\"comment\": \"I've owned several Anker products and they're always top quality. This power bank is no exception. Charges fast, holds charge well, and the capacity is impressive. The included case is a nice touch too.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 398},{\"id\": \"R30A\",\"author\": \"Jordan Smith\",\"rating\": 5,\"title\": \"Reliable and durable\",\"comment\": \"I've had this for over a year now and it still works perfectly. The build quality is excellent - it's survived multiple drops and trips. The capacity hasn't degraded at all. Anker makes quality products!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 512},{\"id\": \"R30B\",\"author\": \"Lisa Chen\",\"rating\": 4,\"title\": \"Great capacity but heavy\",\"comment\": \"The capacity is amazing - I can charge my phone multiple times. The only downside is it's a bit heavy to carry around all day. But for travel and camping, it's perfect. The dual ports are very convenient.\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 389},{\"id\": \"R30C\",\"author\": \"Robert Johnson\",\"rating\": 5,\"title\": \"Perfect for emergencies\",\"comment\": \"I keep this in my car for emergencies and it's been a lifesaver multiple times. The capacity means I can charge multiple devices, and it holds its charge for months. The PowerIQ technology really works!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Electronics\",\"materialComposition\": \"Aluminum alloy, plastic, lithium-ion battery\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2021-08-12\",\"manufacturer\": \"Anker Innovations Limited\",\"itemModelNumber\": \"A1289\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Electronics\",\"Mobile Accessories\",\"Power Banks\"]},{\"id\": \"CLOTH001\",\"name\": \"Nike Air Max 270 Men's Sneakers\",\"brand\": \"Nike\",\"rating\": 4.7,\"numRatings\": 9834,\"price\": 189.99,\"originalPrice\": 249.99,\"mainImage\": \"/src/assets/main-images/shoe.png\",\"images\": [\"/src/assets/main-images/shoe.png\",\"https://images.unsplash.com/photo-1549298916-b41d501d3772?w=800\",\"https://images.unsplash.com/photo-1560343090-f0409e92791a?w=800\"],\"description\": \"The Nike Air Max 270 combines sleek, modern style with maximum comfort. Featuring a visible 270 Air unit, lightweight mesh upper, and plush foam midsole for all-day wearability.\",\"features\": [\"Large-volume Max Air unit for responsive cushioning\",\"Engineered mesh upper for breathability\",\"Dual-density foam for a smooth ride\",\"Stretch bootie construction for snug fit\"],\"specifications\": {\"Material\": \"Mesh upper, rubber sole\",\"Heel Height\": \"32mm\",\"Closure\": \"Lace-up\",\"Weight\": \"330g per shoe\"},\"swatches\": [{\"colorName\": \"Triple Black\",\"hex\": \"#000000\",\"image\": \"https://images.unsplash.com/photo-1560343090-f0409e92791a?w=800\"},{\"colorName\": \"White/University Red\",\"hex\": \"#ffffff\",\"image\": \"https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=800\"},{\"colorName\": \"Midnight Navy\",\"hex\": \"#191970\",\"image\": \"https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=800\"}],\"sizes\": [\"US 7\",\"US 8\",\"US 9\",\"US 10\",\"US 11\",\"US 12\"],\"department\": \"Men\\u2019s Shoes\",\"materialComposition\": \"Textile and synthetic upper, rubber sole\",\"countryOfOrigin\": \"Vietnam\",\"dateFirstAvailable\": \"2023-06-12\",\"manufacturer\": \"Nike Inc.\",\"itemModelNumber\": \"AH8050-002\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Shoes\",\"Athletic Shoes\"],\"ratingBreakdown\": {\"fiveStars\": 6823,\"fourStars\": 2145,\"threeStars\": 594,\"twoStars\": 171,\"oneStar\": 101},\"reviews\": [{\"id\": \"R101\",\"author\": \"Alex Turner\",\"rating\": 5,\"title\": \"Extremely comfortable!\",\"comment\": \"Super light and comfortable \\u2014 great for daily wear and gym use. The heel cushioning is amazing!\",\"date\": \"2024-09-02\",\"verified\": true,\"helpful\": 198},{\"id\": \"R102\",\"author\": \"Jake Simmons\",\"rating\": 4,\"title\": \"Stylish and comfy\",\"comment\": \"They look great with jeans or joggers. Slightly narrow at first but they break in quickly.\",\"date\": \"2024-08-15\",\"verified\": true,\"helpful\": 89},{\"id\": \"R102A\",\"author\": \"Marcus Johnson\",\"rating\": 5,\"title\": \"Best running shoes I've owned\",\"comment\": \"I've been wearing these for my morning runs and they're incredible. The cushioning is perfect - not too soft, not too firm. The breathable upper keeps my feet cool. True to size for me!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 234},{\"id\": \"R102B\",\"author\": \"Chris Anderson\",\"rating\": 4,\"title\": \"Great daily wear shoes\",\"comment\": \"Wear these all day at work and my feet never get tired. They look stylish and professional enough for casual Friday. The only issue is they're a bit squeaky on some surfaces, but that's minor.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 167},{\"id\": \"R102C\",\"author\": \"Taylor Brown\",\"rating\": 5,\"title\": \"Perfect fit and style\",\"comment\": \"Ordered my usual size and they fit perfectly. The design is modern and they go with everything. The Air Max cushioning really makes a difference for long walks. Highly recommend!\",\"date\": \"2024-09-15\",\"verified\": true,\"helpful\": 189},{\"id\": \"R102D\",\"author\": \"Jordan Lee\",\"rating\": 4,\"title\": \"Good shoes, minor sizing issue\",\"comment\": \"Great shoes overall - comfortable and stylish. Had to exchange for half size up as they run slightly small. Once I got the right size, they were perfect. The color options are great too!\",\"date\": \"2024-09-05\",\"verified\": true,\"helpful\": 145}],\"inStock\": true,\"prime\": true},{\"id\": \"CLOTH002\",\"name\": \"Levi\\u2019s 511 Slim Fit Men\\u2019s Jeans\",\"brand\": \"Levi\\u2019s\",\"rating\": 4.5,\"numRatings\": 5321,\"price\": 119.99,\"originalPrice\": 139.99,\"mainImage\": \"/src/assets/main-images/jeans.png\",\"images\": [\"/src/assets/main-images/jeans.png\",\"https://images.unsplash.com/photo-1542272604-787c3835535d?w=800\",\"https://images.unsplash.com/photo-1583743814966-8936f5b7be1a?w=800\"],\"description\": \"Levi\\u2019s 511 Slim Fit Jeans are designed for modern style with a close fit and just the right amount of stretch for comfort.\",\"features\": [\"Slim through seat and thigh\",\"Sits below waist\",\"Stretch denim for flexibility\",\"Five-pocket styling\"],\"specifications\": {\"Material\": \"99% Cotton, 1% Elastane\",\"Fit\": \"Slim\",\"Closure\": \"Button fly\",\"Inseam Options\": \"30\\u201d, 32\\u201d, 34\\u201d\"},\"swatches\": [{\"colorName\": \"Dark Indigo\",\"hex\": \"#1A237E\",\"image\": \"https://images.unsplash.com/photo-1542272604-787c3835535d?w=800\"},{\"colorName\": \"Stone Wash\",\"hex\": \"#5C6BC0\",\"image\": \"https://images.unsplash.com/photo-1541099649105-f69ad21f3246?w=800\"}],\"sizes\": [\"30x30\",\"31x32\",\"32x32\",\"33x34\",\"34x32\",\"36x34\"],\"department\": \"Men\\u2019s Clothing\",\"materialComposition\": \"99% Cotton, 1% Elastane\",\"countryOfOrigin\": \"Bangladesh\",\"dateFirstAvailable\": \"2024-03-28\",\"manufacturer\": \"Levi Strauss & Co.\",\"itemModelNumber\": \"511-0216\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Clothing\",\"Pants & Jeans\"],\"ratingBreakdown\": {\"fiveStars\": 3120,\"fourStars\": 1456,\"threeStars\": 512,\"twoStars\": 165,\"oneStar\": 68},\"reviews\": [{\"id\": \"R103\",\"author\": \"Ben Carter\",\"rating\": 5,\"title\": \"Perfect fit!\",\"comment\": \"Love the cut and stretch. Feels premium and fits perfectly. Holds shape even after multiple washes.\",\"date\": \"2024-09-25\",\"verified\": true,\"helpful\": 143},{\"id\": \"R103A\",\"author\": \"Derek Wilson\",\"rating\": 5,\"title\": \"Best jeans I own\",\"comment\": \"I've bought multiple pairs of these - they're that good. The slim fit is perfect, not too tight. The stretch denim is comfortable all day. They look great dressed up or down. Worth every penny!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 256},{\"id\": \"R103B\",\"author\": \"Sam Taylor\",\"rating\": 4,\"title\": \"Great fit, slight fading\",\"comment\": \"The fit is perfect and they're very comfortable. The stretch is great for active days. My only minor complaint is they fade a bit faster than I'd like, but that's typical for indigo denim. Still love them!\",\"date\": \"2024-09-30\",\"verified\": true,\"helpful\": 178},{\"id\": \"R103C\",\"author\": \"Mike Rodriguez\",\"rating\": 5,\"title\": \"Perfect for everyday wear\",\"comment\": \"These have become my go-to jeans. The 511 fit is just right - not too skinny, not too loose. Quality is excellent and they've held up well. The button fly is a nice touch. Highly recommend!\",\"date\": \"2024-09-18\",\"verified\": true,\"helpful\": 201},{\"id\": \"R103D\",\"author\": \"Kevin Park\",\"rating\": 4,\"title\": \"Good jeans with minor stretch\",\"comment\": \"Great quality jeans with excellent fit. The stretch makes them comfortable but I notice they stretch out a bit during the day. They snap back after washing though. Overall, very satisfied!\",\"date\": \"2024-09-10\",\"verified\": true,\"helpful\": 134}],\"inStock\": true,\"prime\": true},{\"id\": \"ACC001\",\"name\": \"Fossil Grant Chronograph Watch - Brown Leather Strap\",\"brand\": \"Fossil\",\"rating\": 4.6,\"numRatings\": 2789,\"price\": 249,\"mainImage\": \"/src/assets/main-images/watch.png\",\"images\": [\"/src/assets/main-images/watch.png\",\"https://images.unsplash.com/photo-1522312346375-d1a52e2b99b3?w=800\",\"https://images.unsplash.com/photo-1434056886845-dac89ffe9b56?w=800\"],\"description\": \"The Fossil Grant Chronograph combines timeless design with modern functionality, featuring a stainless-steel case and genuine brown leather strap.\",\"features\": [\"Chronograph functionality (stopwatch)\",\"Quartz movement with analog display\",\"Genuine leather strap with buckle closure\",\"Water resistant up to 50m\"],\"specifications\": {\"Case Diameter\": \"44mm\",\"Movement\": \"Quartz\",\"Band Material\": \"Genuine Leather\",\"Water Resistance\": \"50 meters\"},\"swatches\": [{\"colorName\": \"Brown Leather / Blue Dial\",\"hex\": \"#5D4037\",\"image\": \"https://images.unsplash.com/photo-1434056886845-dac89ffe9b56?w=800\"},{\"colorName\": \"Black Leather / Silver Dial\",\"hex\": \"#212121\",\"image\": \"https://images.unsplash.com/photo-1524805444758-089113d48a6d?w=800\"}],\"department\": \"Men\\u2019s Accessories\",\"materialComposition\": \"Stainless steel and genuine leather\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2023-11-18\",\"manufacturer\": \"Fossil Group Inc.\",\"itemModelNumber\": \"FS5151\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": false,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Men\",\"Accessories\",\"Watches\"],\"ratingBreakdown\": {\"fiveStars\": 1989,\"fourStars\": 568,\"threeStars\": 159,\"twoStars\": 45,\"oneStar\": 28},\"reviews\": [{\"id\": \"R104\",\"author\": \"James Wilson\",\"rating\": 5,\"title\": \"Classic and elegant\",\"comment\": \"This watch is absolutely beautiful. The brown leather strap is genuine and comfortable. The chronograph function works perfectly. It looks great with both casual and formal wear. Excellent quality!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 312},{\"id\": \"R104A\",\"author\": \"Michael Brown\",\"rating\": 5,\"title\": \"Perfect everyday watch\",\"comment\": \"I wear this watch daily and it's been fantastic. The leather strap has broken in nicely and is very comfortable. The watch keeps perfect time and the chronograph is a nice feature. Great value for the price!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 245},{\"id\": \"R104B\",\"author\": \"David Lee\",\"rating\": 4,\"title\": \"Great watch, wish it was automatic\",\"comment\": \"The watch looks great and the quality is excellent. The leather strap is genuine and comfortable. My only wish is that it was an automatic movement instead of quartz, but for the price, it's still a great watch.\",\"date\": \"2024-09-28\",\"verified\": true,\"helpful\": 189},{\"id\": \"R104C\",\"author\": \"Robert Kim\",\"rating\": 5,\"title\": \"Excellent gift choice\",\"comment\": \"Bought this as a gift for my brother and he loves it. The watch has a classic, timeless design. The brown leather strap pairs well with the blue dial. It's water resistant enough for daily use. Highly recommend!\",\"date\": \"2024-09-20\",\"verified\": true,\"helpful\": 167},{\"id\": \"R104D\",\"author\": \"Thomas Anderson\",\"rating\": 4,\"title\": \"Good quality, minor issue with strap\",\"comment\": \"The watch itself is excellent - well-built and accurate. The dial is beautiful and easy to read. My only issue is the strap is a bit stiff at first, but it's breaking in. Overall, great watch for the price!\",\"date\": \"2024-09-12\",\"verified\": true,\"helpful\": 134}],\"inStock\": true,\"prime\": true},{\"id\": \"BOOK001\",\"name\": \"The Seven Husbands of Evelyn Hugo - Hardcover\",\"brand\": \"Atria Books\",\"rating\": 4.7,\"numRatings\": 12456,\"price\": 24.99,\"originalPrice\": 32.99,\"mainImage\": \"/src/assets/main-images/book.jpg\",\"images\": [\"/src/assets/main-images/book.jpg\",\"https://images.unsplash.com/photo-1544947950-fa07a98d237f?w=800\",\"https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=800\"],\"description\": \"A captivating novel about a reclusive Hollywood icon who finally decides to tell her story to an unknown journalist. A tale of ambition, friendship, and forbidden love spanning decades.\",\"features\": [\"Bestselling fiction novel\",\"Hardcover edition with dust jacket\",\"416 pages\",\"Perfect for book clubs\"],\"specifications\": {\"Format\": \"Hardcover\",\"Pages\": \"416\",\"Language\": \"English\",\"Publisher\": \"Atria Books\",\"Publication Date\": \"June 13, 2017\",\"ISBN\": \"978-1501139239\"},\"ratingBreakdown\": {\"fiveStars\": 9134,\"fourStars\": 2456,\"threeStars\": 623,\"twoStars\": 178,\"oneStar\": 65},\"reviews\": [{\"id\": \"R200\",\"author\": \"Jennifer Martinez\",\"rating\": 5,\"title\": \"Absolutely captivating\",\"comment\": \"I couldn't put this book down! The story is beautifully written and the characters are so well-developed. Evelyn Hugo's story is both glamorous and heartbreaking. Highly recommend!\",\"date\": \"2024-10-18\",\"verified\": true,\"helpful\": 445},{\"id\": \"R201\",\"author\": \"Sarah Thompson\",\"rating\": 5,\"title\": \"Best book I've read this year\",\"comment\": \"The narrative structure is brilliant - switching between past and present keeps you engaged. The ending was unexpected and perfect. Already planning to read it again!\",\"date\": \"2024-10-10\",\"verified\": true,\"helpful\": 312}],\"inStock\": true,\"prime\": true,\"department\": \"Books\",\"materialComposition\": \"Paper, cardboard, ink\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2017-06-13\",\"manufacturer\": \"Atria Books\",\"itemModelNumber\": \"978-1501139239\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Books\",\"Literature & Fiction\",\"Contemporary Fiction\"]},{\"id\": \"BEAUTY001\",\"name\": \"CeraVe Hydrating Facial Cleanser - 473ml\",\"brand\": \"CeraVe\",\"rating\": 4.6,\"numRatings\": 28456,\"price\": 16.99,\"originalPrice\": 19.99,\"mainImage\": \"/src/assets/main-images/cleanser.png\",\"images\": [\"/src/assets/main-images/cleanser.png\",\"https://images.unsplash.com/photo-1556229010-6c3f2c9ca5f8?w=800\",\"https://images.unsplash.com/photo-1612817288484-6f916006741a?w=800\",\"https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?w=800\"],\"description\": \"A gentle, non-foaming cleanser that removes makeup, dirt, and oil without stripping the skin. Formulated with ceramides and hyaluronic acid to restore and maintain the skin's natural barrier.\",\"features\": [\"Non-foaming formula\",\"Contains ceramides and hyaluronic acid\",\"Fragrance-free\",\"Suitable for normal to dry skin\",\"Dermatologist recommended\"],\"specifications\": {\"Size\": \"473ml\",\"Skin Type\": \"Normal to Dry\",\"Key Ingredients\": \"Ceramides, Hyaluronic Acid\",\"Fragrance\": \"Fragrance-Free\",\"Cruelty Free\": \"Yes\"},\"ratingBreakdown\": {\"fiveStars\": 20345,\"fourStars\": 6234,\"threeStars\": 1345,\"twoStars\": 456,\"oneStar\": 176},\"reviews\": [{\"id\": \"R202\",\"author\": \"Emily Chen\",\"rating\": 5,\"title\": \"Game changer for my skin\",\"comment\": \"I have sensitive dry skin and this cleanser is perfect. It doesn't strip my skin or leave it feeling tight. My skin feels clean and hydrated. Worth every penny!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R203\",\"author\": \"Rachel Kim\",\"rating\": 5,\"title\": \"Best cleanser I've tried\",\"comment\": \"I've tried so many cleansers and this one is definitely the best. It removes all my makeup without irritation. My skin has improved so much since using this. Highly recommend!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 412}],\"inStock\": true,\"prime\": true,\"department\": \"Beauty & Personal Care\",\"materialComposition\": \"Water, glycerin, ceramides, hyaluronic acid\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2020-03-15\",\"manufacturer\": \"L'Or\\u00e9al USA\",\"itemModelNumber\": \"CER-CLEANSER-473\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Beauty & Personal Care\",\"Skin Care\",\"Facial Cleansers\"]},{\"id\": \"SPORTS001\",\"name\": \"YETI Rambler 500ml Water Bottle - Stainless Steel\",\"brand\": \"YETI\",\"rating\": 4.8,\"numRatings\": 15678,\"price\": 54.99,\"originalPrice\": 64.99,\"mainImage\": \"/src/assets/main-images/bottle.png\",\"images\": [\"/src/assets/main-images/bottle.png\",\"https://images.unsplash.com/photo-1602143407151-7111542de6e8?w=800\",\"https://images.unsplash.com/photo-1523362628745-0c100150b504?w=800\"],\"description\": \"The YETI Rambler 500ml bottle keeps drinks cold for hours and hot for hours. Made from 18/8 stainless steel with double-wall vacuum insulation. Durable, dishwasher safe, and backed by a 5-year warranty.\",\"features\": [\"Double-wall vacuum insulation\",\"Stainless steel construction\",\"Dishwasher safe\",\"Leak-proof cap\",\"500ml capacity\",\"5-year warranty\"],\"specifications\": {\"Capacity\": \"500ml\",\"Material\": \"18/8 Stainless Steel\",\"Insulation Type\": \"Double-Wall Vacuum\",\"Weight\": \"340g\",\"Dimensions\": \"6.9 x 6.9 x 28.6 cm\",\"Dishwasher Safe\": \"Yes\"},\"ratingBreakdown\": {\"fiveStars\": 13245,\"fourStars\": 1923,\"threeStars\": 345,\"twoStars\": 98,\"oneStar\": 67},\"reviews\": [{\"id\": \"R204\",\"author\": \"Michael Johnson\",\"rating\": 5,\"title\": \"Best water bottle ever\",\"comment\": \"I've had this for 6 months and it's amazing. Ice stays frozen all day, even in hot weather. Build quality is exceptional - dropped it multiple times and not a scratch. Worth the investment!\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 678},{\"id\": \"R205\",\"author\": \"David Brown\",\"rating\": 5,\"title\": \"Perfect for hiking\",\"comment\": \"Took this on a week-long hiking trip and it kept my water cold the entire time. The cap is easy to use with one hand. Durable and well-designed. Highly recommend for outdoor activities!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Sports & Outdoors\",\"materialComposition\": \"18/8 Stainless steel\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2019-05-20\",\"manufacturer\": \"YETI Coolers LLC\",\"itemModelNumber\": \"RAM-500-BLK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Sports & Outdoors\",\"Sports & Fitness\",\"Hydration\",\"Water Bottles\"]},{\"id\": \"PET001\",\"name\": \"KONG Classic Dog Toy - Large\",\"brand\": \"KONG\",\"rating\": 4.7,\"numRatings\": 34256,\"price\": 18.99,\"originalPrice\": 24.99,\"mainImage\": \"/src/assets/main-images/dog_toy.png\",\"images\": [\"/src/assets/main-images/dog_toy.png\",\"https://images.unsplash.com/photo-1534361960057-19889db9621e?w=800\",\"https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=800\",\"https://images.unsplash.com/photo-1552053831-71594a27632d?w=800\"],\"description\": \"The KONG Classic is the original treat-dispensing toy made from natural rubber. Stuff it with treats or peanut butter to keep your dog entertained and mentally stimulated. Perfect for chewers and helps with separation anxiety.\",\"features\": [\"Unique hollow design for treats\",\"Bouncy texture satisfies chewing instincts\",\"Made from natural rubber\",\"Dishwasher safe\",\"Floats in water\",\"Multiple sizes available\"],\"specifications\": {\"Size\": \"Large\",\"Material\": \"Natural Rubber\",\"Recommended Weight\": \"20-35kg\",\"Dishwasher Safe\": \"Yes\",\"Warranty\": \"Limited Lifetime\"},\"ratingBreakdown\": {\"fiveStars\": 25678,\"fourStars\": 6234,\"threeStars\": 1789,\"twoStars\": 345,\"oneStar\": 210},\"reviews\": [{\"id\": \"R206\",\"author\": \"Lisa Anderson\",\"rating\": 5,\"title\": \"My dog loves it!\",\"comment\": \"I stuff this with peanut butter and my dog is entertained for hours. It's durable and has held up to my aggressive chewer. Great for keeping him busy when I'm working from home!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 567},{\"id\": \"R207\",\"author\": \"Tom Wilson\",\"rating\": 5,\"title\": \"Best dog toy purchase\",\"comment\": \"This toy has saved my furniture! My dog used to chew everything but now he's obsessed with this KONG. I fill it with treats and it keeps him occupied. Well worth the price!\",\"date\": \"2024-10-12\",\"verified\": true,\"helpful\": 423}],\"inStock\": true,\"prime\": true,\"department\": \"Pet Supplies\",\"materialComposition\": \"Natural rubber\",\"countryOfOrigin\": \"United States\",\"dateFirstAvailable\": \"2018-01-10\",\"manufacturer\": \"KONG Company\",\"itemModelNumber\": \"KONG-LRG-RED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Pet Supplies\",\"Dogs\",\"Toys\",\"Chew Toys\"]},{\"id\": \"GARDEN001\",\"name\": \"Fiskars Ergo D-Handle Shovel - 122cm\",\"brand\": \"Fiskars\",\"rating\": 4.7,\"numRatings\": 8765,\"price\": 59.99,\"originalPrice\": 79.99,\"mainImage\": \"/src/assets/main-images/shovel.png\",\"images\": [\"/src/assets/main-images/shovel.png\",\"https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=800\",\"https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=800\",\"https://images.unsplash.com/photo-1470058869958-2a77ade41c02?w=800\"],\"description\": \"Professional-grade shovel with ergonomic D-handle design for comfortable use. Features rust-resistant steel blade and FiberComp handle. Perfect for digging, transplanting, and general garden work.\",\"features\": [\"Ergonomic D-handle design\",\"Rust-resistant steel blade\",\"FiberComp handle\",\"Comfortable grip\",\"Lifetime warranty\"],\"specifications\": {\"Length\": \"122cm\",\"Blade Material\": \"Rust-Resistant Steel\",\"Handle Material\": \"FiberComp\",\"Weight\": \"1.8kg\",\"Blade Width\": \"20cm\"},\"ratingBreakdown\": {\"fiveStars\": 6234,\"fourStars\": 2012,\"threeStars\": 345,\"twoStars\": 98,\"oneStar\": 76},\"reviews\": [{\"id\": \"R210\",\"author\": \"Robert Martinez\",\"rating\": 5,\"title\": \"Best shovel I've owned\",\"comment\": \"This shovel is incredibly well-made. The ergonomic handle makes it comfortable to use for extended periods. The blade is sharp and cuts through soil easily. Highly recommend for serious gardeners!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R211\",\"author\": \"James White\",\"rating\": 5,\"title\": \"Durable and comfortable\",\"comment\": \"Used this for landscaping my entire yard and it held up perfectly. The handle is comfortable and the blade stays sharp. Much better than cheaper alternatives. Worth the investment!\",\"date\": \"2024-10-13\",\"verified\": true,\"helpful\": 389}],\"inStock\": true,\"prime\": true,\"department\": \"Garden & Outdoor\",\"materialComposition\": \"Steel, FiberComp plastic\",\"countryOfOrigin\": \"Finland\",\"dateFirstAvailable\": \"2020-04-12\",\"manufacturer\": \"Fiskars Corporation\",\"itemModelNumber\": \"FSK-SHOVEL-D-122\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Garden & Outdoor\",\"Garden Tools\",\"Digging Tools\",\"Shovels\"]},{\"id\": \"HEALTH001\",\"name\": \"Fitbit Charge 6 Fitness Tracker\",\"brand\": \"Fitbit\",\"rating\": 4.4,\"numRatings\": 23456,\"price\": 199.99,\"originalPrice\": 249.99,\"mainImage\": \"/src/assets/main-images/fitbit.png\",\"images\": [\"/src/assets/main-images/fitbit.png\",\"https://images.unsplash.com/photo-1579586337278-3befd40fd17a?w=800\",\"https://images.unsplash.com/photo-1544966501-86d23fed7af3?w=800\",\"https://images.unsplash.com/photo-1576243345690-4e4b79d12963?w=800\"],\"description\": \"Advanced fitness tracker with built-in GPS, heart rate monitoring, sleep tracking, and 50+ exercise modes. Features a color touchscreen display, 6+ days battery life, and Google integration.\",\"features\": [\"Built-in GPS\",\"24/7 heart rate monitoring\",\"Sleep tracking\",\"50+ exercise modes\",\"6+ days battery life\",\"Google Wallet & Maps\",\"Water resistant up to 50m\"],\"specifications\": {\"Battery Life\": \"6+ days\",\"Display\": \"Color Touchscreen\",\"Water Resistance\": \"50 meters\",\"Connectivity\": \"Bluetooth, Wi-Fi\",\"Compatible OS\": \"iOS, Android\",\"Weight\": \"29g\"},\"ratingBreakdown\": {\"fiveStars\": 14234,\"fourStars\": 6234,\"threeStars\": 2234,\"twoStars\": 567,\"oneStar\": 187},\"reviews\": [{\"id\": \"R212\",\"author\": \"Maria Garcia\",\"rating\": 5,\"title\": \"Excellent fitness tracker\",\"comment\": \"I've had this for 3 months and love it! The GPS is accurate, heart rate monitoring works well, and battery lasts over a week. The sleep tracking is really insightful. Great value for money!\",\"date\": \"2024-10-22\",\"verified\": true,\"helpful\": 612},{\"id\": \"R213\",\"author\": \"Chris Thompson\",\"rating\": 4,\"title\": \"Good but app could be better\",\"comment\": \"The tracker itself is great - accurate readings and long battery life. My only complaint is the Fitbit app interface could be more intuitive. But overall, I'm happy with the purchase.\",\"date\": \"2024-10-16\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Health & Household\",\"materialComposition\": \"Silicone, glass, aluminum\",\"countryOfOrigin\": \"China\",\"dateFirstAvailable\": \"2023-09-28\",\"manufacturer\": \"Fitbit Inc.\",\"itemModelNumber\": \"FB512BK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"tomorrow\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": true,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Electronics\",\"Wearable Technology\",\"Fitness Trackers\"]},{\"id\": \"OFFICE001\",\"name\": \"Moleskine Classic Notebook - Large, Hard Cover, Ruled\",\"brand\": \"Moleskine\",\"rating\": 4.6,\"numRatings\": 15234,\"price\": 24.99,\"mainImage\": \"/src/assets/main-images/notebook.png\",\"images\": [\"/src/assets/main-images/notebook.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=800\"],\"description\": \"The iconic Moleskine notebook with hard cover, ruled pages, and elastic closure. Features acid-free paper, ribbon bookmark, and expandable inner pocket. Perfect for notes, journaling, and creative writing.\",\"features\": [\"Hard cover with rounded corners\",\"Ruled pages\",\"Acid-free paper\",\"Ribbon bookmark\",\"Elastic closure\",\"Expandable inner pocket\",\"240 pages\"],\"specifications\": {\"Size\": \"Large (13 x 21 cm)\",\"Pages\": \"240\",\"Page Type\": \"Ruled\",\"Paper Weight\": \"70gsm\",\"Cover\": \"Hard Cover\",\"Color\": \"Black\"},\"ratingBreakdown\": {\"fiveStars\": 10234,\"fourStars\": 4012,\"threeStars\": 845,\"twoStars\": 234,\"oneStar\": 109},\"reviews\": [{\"id\": \"R214\",\"author\": \"Emma Wilson\",\"rating\": 5,\"title\": \"Perfect notebook\",\"comment\": \"I've used Moleskine notebooks for years and they never disappoint. The paper quality is excellent, the binding is durable, and it looks professional. Worth every penny!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 456},{\"id\": \"R215\",\"author\": \"Daniel Lee\",\"rating\": 5,\"title\": \"Great for journaling\",\"comment\": \"I use this for daily journaling and it's perfect. The paper is smooth and doesn't bleed through. The hard cover protects it well. Highly recommend for anyone who loves writing!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 334}],\"inStock\": true,\"prime\": true,\"department\": \"Office Products\",\"materialComposition\": \"Paper, cardboard, elastic, ribbon\",\"countryOfOrigin\": \"Italy\",\"dateFirstAvailable\": \"2015-01-15\",\"manufacturer\": \"Moleskine S.p.A.\",\"itemModelNumber\": \"MOL-NOTE-L-RULED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Office Products\",\"Office Supplies\",\"Notebooks & Writing Pads\",\"Notebooks\"]},{\"id\": \"CLOTH003\",\"name\": \"Calvin Klein Women's Cotton T-Shirt - 3 Pack\",\"brand\": \"Calvin Klein\",\"rating\": 4.5,\"numRatings\": 9876,\"price\": 89.99,\"originalPrice\": 119.99,\"mainImage\": \"/src/assets/main-images/women-shirt.png\",\"images\": [\"/src/assets/main-images/women-shirt.png\",\"https://images.unsplash.com/photo-1618354691373-d851c5c3a990?w=800\",\"https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?w=800\"],\"description\": \"Classic crew neck t-shirts made from soft cotton blend. Perfect for everyday wear, these versatile basics feature a relaxed fit and come in a convenient 3-pack. Available in multiple color combinations.\",\"features\": [\"3-pack of t-shirts\",\"100% cotton\",\"Crew neck\",\"Relaxed fit\",\"Machine washable\",\"Essential wardrobe basics\"],\"specifications\": {\"Material\": \"100% Cotton\",\"Fit\": \"Relaxed\",\"Neck Style\": \"Crew Neck\",\"Care Instructions\": \"Machine Wash\",\"Package Contents\": \"3 T-Shirts\"},\"swatches\": [{\"colorName\": \"White/Grey/Black\",\"hex\": \"#FFFFFF\",\"image\": \"https://images.unsplash.com/photo-1618354691373-d851c5c3a990?w=800\"},{\"colorName\": \"Black/Grey/White\",\"hex\": \"#000000\",\"image\": \"https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=800\"}],\"sizes\": [\"XS\",\"S\",\"M\",\"L\",\"XL\"],\"ratingBreakdown\": {\"fiveStars\": 6234,\"fourStars\": 2543,\"threeStars\": 789,\"twoStars\": 234,\"oneStar\": 76},\"reviews\": [{\"id\": \"R216\",\"author\": \"Sophie Brown\",\"rating\": 5,\"title\": \"Perfect basics\",\"comment\": \"These t-shirts are soft, comfortable, and fit perfectly. Great quality for the price. I've washed them multiple times and they still look new. Perfect for everyday wear!\",\"date\": \"2024-10-20\",\"verified\": true,\"helpful\": 523},{\"id\": \"R217\",\"author\": \"Amanda Davis\",\"rating\": 4,\"title\": \"Good quality, runs slightly small\",\"comment\": \"The fabric is soft and the quality is great. I ordered my usual size and they fit but are a bit snug. Might size up next time. Otherwise, very happy with the purchase!\",\"date\": \"2024-10-14\",\"verified\": true,\"helpful\": 389}],\"inStock\": true,\"prime\": true,\"department\": \"Women's Clothing\",\"materialComposition\": \"100% Cotton\",\"countryOfOrigin\": \"Bangladesh\",\"dateFirstAvailable\": \"2023-07-20\",\"manufacturer\": \"Calvin Klein Inc.\",\"itemModelNumber\": \"CK-TEE-3PK\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"two-days\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Clothing, Shoes & Accessories\",\"Women\",\"Clothing\",\"Tops & Tees\"]},{\"id\": \"GROCERY001\",\"name\": \"Twinings English Breakfast Tea - 200 Tea Bags\",\"brand\": \"Twinings\",\"rating\": 4.7,\"numRatings\": 18456,\"price\": 24.99,\"originalPrice\": 29.99,\"mainImage\": \"/src/assets/main-images/tea.png\",\"images\": [\"/src/assets/main-images/tea.png\",\"https://images.unsplash.com/photo-1556679343-c7306c1976bc?w=800\",\"https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=800\",\"https://images.unsplash.com/photo-1576092768241-dec231879fc3?w=800\"],\"description\": \"Classic English Breakfast tea blend from Twinings. A robust, full-bodied black tea perfect for starting your day. Made from quality black tea leaves sourced from tea gardens around the world. 200 individually wrapped tea bags.\",\"features\": [\"200 tea bags\",\"Individually wrapped\",\"Classic English Breakfast blend\",\"Full-bodied flavor\",\"Premium black tea\",\"Suitable for breakfast or anytime\"],\"specifications\": {\"Quantity\": \"200 Tea Bags\",\"Type\": \"Black Tea\",\"Caffeine Content\": \"High\",\"Packaging\": \"Individually Wrapped\",\"Origin\": \"Blend of tea gardens\",\"Best Before\": \"2 years from purchase\"},\"ratingBreakdown\": {\"fiveStars\": 13245,\"fourStars\": 4123,\"threeStars\": 823,\"twoStars\": 178,\"oneStar\": 87},\"reviews\": [{\"id\": \"R218\",\"author\": \"Margaret Smith\",\"rating\": 5,\"title\": \"Best English Breakfast tea\",\"comment\": \"I've been drinking Twinings English Breakfast for years and it's the best. Strong, full-bodied flavor that's perfect in the morning. Great value for 200 bags. Highly recommend!\",\"date\": \"2024-10-21\",\"verified\": true,\"helpful\": 567},{\"id\": \"R219\",\"author\": \"Robert Taylor\",\"rating\": 5,\"title\": \"Excellent quality\",\"comment\": \"The tea is consistently high quality. Each bag makes a strong, flavorful cup. I drink 2-3 cups a day and this supply lasts me months. Great value and great taste!\",\"date\": \"2024-10-15\",\"verified\": true,\"helpful\": 445}],\"inStock\": true,\"prime\": true,\"department\": \"Grocery & Gourmet Food\",\"materialComposition\": \"Black tea leaves\",\"countryOfOrigin\": \"United Kingdom\",\"dateFirstAvailable\": \"2019-11-10\",\"manufacturer\": \"Twinings of London\",\"itemModelNumber\": \"TWN-ENG-200\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": true,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": true,\"breadcrumbs\": [\"Grocery & Gourmet Food\",\"Beverages\",\"Tea\",\"Black Tea\"]}],\"filters\": {\"shipsFromUnitedStates\": false,\"internationalShipping\": false,\"deliveryTomorrow\": false,\"deliveryTwoDays\": false,\"freeDelivery\": false,\"condition\": [],\"isGlobalStore\": false,\"includeOutOfStock\": false,\"minPrice\": 0,\"maxPrice\": 1000000,\"minRating\": null},\"filteredProducts\": [{\"id\": \"OFFICE001\",\"name\": \"Moleskine Classic Notebook - Large, Hard Cover, Ruled\",\"brand\": \"Moleskine\",\"rating\": 4.6,\"numRatings\": 15234,\"price\": 24.99,\"mainImage\": \"/src/assets/main-images/notebook.png\",\"images\": [\"/src/assets/main-images/notebook.png\",\"https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800\",\"https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=800\"],\"description\": \"The iconic Moleskine notebook with hard cover, ruled pages, and elastic closure. Features acid-free paper, ribbon bookmark, and expandable inner pocket. Perfect for notes, journaling, and creative writing.\",\"features\": [\"Hard cover with rounded corners\",\"Ruled pages\",\"Acid-free paper\",\"Ribbon bookmark\",\"Elastic closure\",\"Expandable inner pocket\",\"240 pages\"],\"specifications\": {\"Size\": \"Large (13 x 21 cm)\",\"Pages\": \"240\",\"Page Type\": \"Ruled\",\"Paper Weight\": \"70gsm\",\"Cover\": \"Hard Cover\",\"Color\": \"Black\"},\"ratingBreakdown\": {\"fiveStars\": 10234,\"fourStars\": 4012,\"threeStars\": 845,\"twoStars\": 234,\"oneStar\": 109},\"reviews\": [{\"id\": \"R214\",\"author\": \"Emma Wilson\",\"rating\": 5,\"title\": \"Perfect notebook\",\"comment\": \"I've used Moleskine notebooks for years and they never disappoint. The paper quality is excellent, the binding is durable, and it looks professional. Worth every penny!\",\"date\": \"2024-10-19\",\"verified\": true,\"helpful\": 456},{\"id\": \"R215\",\"author\": \"Daniel Lee\",\"rating\": 5,\"title\": \"Great for journaling\",\"comment\": \"I use this for daily journaling and it's perfect. The paper is smooth and doesn't bleed through. The hard cover protects it well. Highly recommend for anyone who loves writing!\",\"date\": \"2024-10-11\",\"verified\": true,\"helpful\": 334}],\"inStock\": true,\"prime\": true,\"department\": \"Office Products\",\"materialComposition\": \"Paper, cardboard, elastic, ribbon\",\"countryOfOrigin\": \"Italy\",\"dateFirstAvailable\": \"2015-01-15\",\"manufacturer\": \"Moleskine S.p.A.\",\"itemModelNumber\": \"MOL-NOTE-L-RULED\",\"shipsFromUnitedStates\": true,\"internationalShipping\": true,\"deliverySpeed\": \"standard\",\"freeDelivery\": true,\"hasDiscount\": false,\"isTodaysDeal\": false,\"condition\": \"new\",\"isGlobalStore\": false,\"breadcrumbs\": [\"Office Products\",\"Office Supplies\",\"Notebooks & Writing Pads\",\"Notebooks\"]}],\"selectedProduct\": null,\"currentUser\": {\"name\": \"John Doe\",\"searches\": [],\"viewedProducts\": [],\"location\": \"Sydney 2000\"}}",
9
  "instructions": "{\"user_prompt\": \"Type in \\\"book\\\" to the search bar from the home page and once on the search page, select the product with id OFFICE001.\",\"success_criteria\": \"The currentPage should be \\\"product\\\" and the selectedProduct should have the id OFFICE001. The searchQuery should be 'book'.\"}",
10
  "reward_function": "_validate_navigate_from_search_page_to_product_page",
tasks/amazon/product-prices-up-to-90.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/products-prices-between-150-and-300.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/amazon/products-with-prices-greater-than-700.json CHANGED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/changing-categories-in-inbox.json ADDED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/collapse-the-sidebar.json ADDED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/expand-sidebar.json ADDED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/filter-using-search-and-sender.json ADDED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/filtering-apple-emails-with-attachment.json ADDED
The diff for this file is too large to render. See raw diff
 
tasks/gmail/filtering-your-own-sent-emails.json ADDED
The diff for this file is too large to render. See raw diff