-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_shopping.raw.json
18640 lines (18640 loc) · 697 KB
/
test_shopping.raw.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"sites": [
"shopping"
],
"task_id": 0,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "Buy the least expensive {{product}} from \"{{category}}\" category.",
"intent": "Buy the least expensive red blanket (in any size) from \"Blankets & Throws\" category.",
"instantiation_dict": {
"category": "Blankets & Throws",
"product": "red blanket (in any size)"
},
"require_reset": false,
"eval": {
"eval_types": [
"program_html"
],
"reference_answers": null,
"reference_url": "",
"program_html": [
{
"url": "func:shopping_get_latest_order_url()",
"locator": "document.querySelector(\".order-details-items.ordered\").outerText",
"required_contents": {
"must_include": [
"B0983XCYK6",
"Red"
]
}
}
]
},
"intent_template_id": 0,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 1,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "Buy the least expensive {{product}} from \"{{category}}\" category.",
"intent": "Buy the least expensive blue headset from \"Virtual Reality (VR) Headsets\" category.",
"instantiation_dict": {
"category": "Virtual Reality (VR) Headsets",
"product": "blue headset"
},
"require_reset": false,
"eval": {
"eval_types": [
"program_html"
],
"reference_answers": null,
"reference_url": "",
"program_html": [
{
"url": "func:shopping_get_latest_order_url()",
"locator": "document.querySelector(\".order-details-items.ordered\").outerText",
"required_contents": {
"must_include": [
"B09MP3SGPN"
]
}
}
]
},
"intent_template_id": 0,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 2,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "Buy the least expensive {{product}} from \"{{category}}\" category.",
"intent": "Buy the least expensive canvas print with grapes from \"Posters & Prints\" category.",
"instantiation_dict": {
"category": "Posters & Prints",
"product": "canvas print with grapes"
},
"require_reset": false,
"eval": {
"eval_types": [
"program_html"
],
"reference_answers": null,
"reference_url": "",
"program_html": [
{
"url": "func:shopping_get_latest_order_url()",
"locator": "document.querySelector(\".order-details-items.ordered\").outerText",
"required_contents": {
"must_include": [
"B08ZCCRMH4"
]
}
}
]
},
"intent_template_id": 0,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 3,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "I am doing a market survey for one stop market, show me the most expensive {{product}} from \"{{product_category}}\" category",
"intent": "I am doing a market survey for one stop market, show me the most expensive red controller from \"PS4 accessories\" category",
"instantiation_dict": {
"product": "red controller",
"product_category": "PS4 accessories"
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/dualshock-4-wireless-controller-for-playstation-4-magma-red.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 1,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 4,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "I am doing a market survey for one stop market, show me the most expensive {{product}} from \"{{product_category}}\" category",
"intent": "I am doing a market survey for one stop market, show me the most expensive black and white item from \"Posters & Prints\" category",
"instantiation_dict": {
"product": "black and white item",
"product_category": "Posters & Prints"
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/signature-design-by-ashley-pancho-modern-framed-cow-canvas-wall-art-48-x-36-black-white.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 1,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 5,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__",
"geolocation": null,
"intent_template": "I am doing a market survey for one stop market, show me the most expensive {{product}} from \"{{product_category}}\" category",
"intent": "I am doing a market survey for one stop market, show me the most expensive yellow product from \"Dried Fruits & Vegetables\" category",
"instantiation_dict": {
"product": "yellow product",
"product_category": "Dried Fruits & Vegetables"
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/sun-maid-california-golden-raisins-15-ounce-boxes-pack-of-24.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 1,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 6,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "{{modifier}}List the full product names of {{color}} {{product}} and tell me the price range of the available products",
"intent": "Search for 'Nike slide slippers'. List the full product names of red ones on the first page and tell me the price range of the available products",
"instantiation_dict": {
"modifier": "Search for 'Nike slide slippers'. ",
"color": "red",
"product": "ones on the first page"
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"Nike Men's Air Max Camden Slide Sandal",
"Nike Men's Benassi JDI Fanny Pack Slides",
"Nike Offcourt Slide Mens Bq4639-002 Size 12",
"Nike Jordan Men's Break Slide Red AR6374-602",
"42.81",
"69.00"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "These models are availiable: Nike Men's Air Max Camden Slide Sandal, Nike Men's Benassi JDI Fanny Pack Slides, Nike Offcourt Slide Mens Bq4639-002 Size 12, Nike Jordan Men's Break Slide Red AR6374-602. The price ranges from $42.81 to $69.00"
},
"intent_template_id": 2,
"reasoning_difficulty": "hard",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "hard"
},
{
"sites": [
"shopping"
],
"task_id": 7,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "{{modifier}}List the full product names of {{color}} {{product}} and tell me the price range of the available products",
"intent": "Search for 'pencil case'. List the full product names of those with animal designs on the first page and tell me the price range of the available products",
"instantiation_dict": {
"modifier": "Search for 'pencil case'. ",
"color": "those with",
"product": "animal designs on the first page"
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"Cosmetic Bag Leather Pencil Case,Cosmetic Bag Leather Pencil Case,Two Wolves,Portable Small Makeup Bags Travel bag Multifunctional Pen Holder Box with Zipper for Women Girls Lady Teens",
"Danielle Cute Boston Terrier, Frenchie, French Bulldog Portable Pencil Case, Cosmetic Travel Organizer Bag | 9x3x3 in",
"Dinosaur Pattern Travel Bag Large Toiletries Bag Cosmetic Pouch Pencil Case Tote Multifunction Organizer Storage Bag",
"11.99",
"38.67"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": ""
},
"intent_template_id": 2,
"reasoning_difficulty": "hard",
"visual_difficulty": "medium",
"comments": "",
"overall_difficulty": "hard"
},
{
"sites": [
"shopping"
],
"task_id": 8,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/catalogsearch/result/?q=+Lays",
"geolocation": null,
"intent_template": "{{modifier}}List the full product names of {{color}} {{product}} and tell me the price range of the available products",
"intent": "List the full product names of red packaging Lays chips on this page and tell me the price range of the available products",
"instantiation_dict": {
"modifier": "",
"color": "red packaging",
"product": "Lays chips on this page"
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"Canadian Lays Ketchup Chips - 1 Family Size Bag",
"Canadian Lays Ketchup Potato Chips (4pk) 180g/6.3 oz., {Imported from Canada}",
"LAYS Brand , Crispy Potato Chips Smoked Salmon Cream Cheese Flavour, 67g X 2 Packs",
"11.85",
"38.99"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "These are availiable: Canadian Lays Ketchup Chips - 1 Family Size Bag, Canadian Lays Ketchup Potato Chips (4pk) 180g/6.3 oz., {Imported from Canada}, LAYS Brand , Crispy Potato Chips Smoked Salmon Cream Cheese Flavour, 67g X 2 Packs. The price ranges from $11.85 to $38.99"
},
"intent_template_id": 2,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 9,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Show me the {{order}} in the \"{{product}}\" search results by {{sorting_order}}.",
"instantiation_dict": {
"order": "first item in the second row",
"product": "chairs",
"sorting_order": "descending price"
},
"intent": "Show me the first item in the second row in the \"chairs\" search results by descending price.",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/oeukji-office-chairs-office-products-boss-chair-business-home-office-chair-reclining-computer-chair-leather-boss-chair-swivel-chair-executive-chair.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 3,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 10,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Show me the {{order}} in the \"{{product}}\" search results by {{sorting_order}}.",
"instantiation_dict": {
"order": "third item in the second row",
"product": "frozen pizza",
"sorting_order": "descending price"
},
"intent": "Show me the third item in the second row in the \"frozen pizza\" search results by descending price.",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/portobello-arancini-bites-gourmet-frozen-appetizers-set-of-8-trays.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 3,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 11,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Show me the {{order}} in the \"{{product}}\" search results by {{sorting_order}}.",
"instantiation_dict": {
"order": "first item with round cookies",
"product": "ice cream sandwiches",
"sorting_order": "descending relevance"
},
"intent": "Show me the first item with round cookies in the \"ice cream sandwiches\" search results by descending relevance.",
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/skinny-cow-gone-wild-low-fat-ice-cream-sandwiches-box-vanilla-24-fl-oz-pack-of-6.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 3,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 12,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Show me the {{order}} in the \"{{product}}\" search results by {{sorting_order}}.",
"instantiation_dict": {
"order": "first painting",
"product": "van gogh",
"sorting_order": "descending relevance"
},
"intent": "Show me the first painting in the \"van gogh\" search results by descending relevance.",
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/decorarts-cafe-terrace-at-night-vincent-van-gogh-art-reproduction-giclee-canvas-prints-wall-art-for-home-decor-30x24.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 3,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 13,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the price range for products in the {{region}}?",
"instantiation_dict": {
"region": "first row of this page"
},
"intent": "What is the price range for products in the first row of this page?",
"require_reset": false,
"viewport_size": {
"width": 1280
},
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"14.47",
"23.50"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$14.47 - $23.50"
},
"intent_template_id": 4,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 14,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/video-games/nintendo-switch.html",
"geolocation": null,
"intent_template": "What is the price range for products in the {{region}}?",
"instantiation_dict": {
"region": "last row of this page"
},
"intent": "What is the price range for products in the last row of this page?",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"4.95",
"43.00"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$4.95 - $43.00"
},
"intent_template_id": 4,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 15,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/clothing-shoes-jewelry/sport-specific-clothing/competitive-swimwear.html?product_list_limit=36",
"geolocation": null,
"intent_template": "What is the price range for products in the {{region}}?",
"instantiation_dict": {
"region": "second and third rows of this page"
},
"intent": "What is the price range for products in the second and third rows of this page?",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"4.99",
"16.09"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$4.99 - $16.09"
},
"intent_template_id": 4,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 16,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/office-products/office-electronics/printers-accessories.html?p=3",
"geolocation": null,
"intent_template": "What is the price range for products in the {{region}}?",
"instantiation_dict": {
"region": "first column of this page"
},
"intent": "What is the price range for products in the first column of this page?",
"require_reset": false,
"viewport_size": {
"width": 1280
},
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"47.69",
"488.83"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$47.69 - $488.83"
},
"intent_template_id": 4,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 17,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/electronics/video-projectors.html",
"geolocation": null,
"intent_template": "What is the price range for products in the {{region}}?",
"instantiation_dict": {
"region": "last column of this page"
},
"intent": "What is the price range for products in the last column of this page?",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"123.41",
"184.59"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$123.41 - $184.59"
},
"intent_template_id": 4,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 18,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the price of the most expensive {{color}} product in the \"{{product_category}}\" category?",
"instantiation_dict": {
"color": "red",
"product_category": "Basic Cases"
},
"intent": "What is the price of the most expensive red product in the \"Basic Cases\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"42.98"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$42.98"
},
"intent_template_id": 5,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 19,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the price of the most expensive {{color}} product in the \"{{product_category}}\" category?",
"instantiation_dict": {
"color": "feather lamp",
"product_category": "Lamps & Shades"
},
"intent": "What is the price of the most expensive feather lamp product in the \"Lamps & Shades\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"920.99"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$920.99"
},
"intent_template_id": 5,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 20,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the price of the most expensive {{color}} product in the \"{{product_category}}\" category?",
"instantiation_dict": {
"color": "blue",
"product_category": "Posters & Prints"
},
"intent": "What is the price of the most expensive blue product in the \"Posters & Prints\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"399.99"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "$399.99"
},
"intent_template_id": 5,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 21,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the color of the {{type}} item in the \"{{product_category}}\" category?",
"instantiation_dict": {
"type": "most expensive",
"product_category": "Over-Ear Headphones"
},
"intent": "What is the color of the most expensive item in the \"Over-Ear Headphones\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"black"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "black"
},
"intent_template_id": 6,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 22,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the color of the {{type}} item in the \"{{product_category}}\" category?",
"instantiation_dict": {
"type": "second cheapest",
"product_category": "Snack Gifts"
},
"intent": "What is the color of the second cheapest item in the \"Snack Gifts\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"red |OR| yellow"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "red and yellow"
},
"intent_template_id": 6,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 23,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "What is the color of the {{type}} item in the \"{{product_category}}\" category?",
"instantiation_dict": {
"type": "third most expensive",
"product_category": "Exercise & Fitness"
},
"intent": "What is the color of the third most expensive item in the \"Exercise & Fitness\" category?",
"require_reset": false,
"eval": {
"eval_types": [
"string_match"
],
"reference_answers": {
"must_include": [
"red"
]
},
"reference_url": "",
"program_html": [],
"string_note": "",
"reference_answer_raw_annotation": "red"
},
"intent_template_id": 6,
"reasoning_difficulty": "medium",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "medium"
},
{
"sites": [
"shopping"
],
"task_id": 24,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Search for \"{{keyword}}\" and show me the {{item_order}} item {{condition}}",
"instantiation_dict": {
"keyword": "usb wifi",
"item_order": "first",
"condition": "in the second row"
},
"intent": "Search for \"usb wifi\" and show me the first item in the second row",
"viewport_size": {
"width": 1280
},
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/edup-usb-wifi-adapter-dual-band-wireless-network-adapter-802-11-ac-2-4g-5g-usb-wi-fi-dongle-with-extender-antenna-compatible-with-windows-xp-vista-7-8-1-10-mac-os-x-10-7-10-15.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 7,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 25,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Search for \"{{keyword}}\" and show me the {{item_order}} item {{condition}}",
"instantiation_dict": {
"keyword": "raincoat",
"item_order": "first",
"condition": "that is blue in color"
},
"intent": "Search for \"raincoat\" and show me the first item that is blue in color",
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/wuai-women-oversized-raincoats-rain-jackets-plus-size-lightweight-waterproof-trench-coat-outdoor-packable-windbreaker-s-5xl.html |OR| __SHOPPING__/jspoyou-mens-windproof-rain-jacket-detachable-hooded-lightweight-breathable-trench-coat-winter-warm-packable-raincoat-outwear.html |OR| __SHOPPING__/lightweight-hooded-rain-coat-womens-waterproof-zipper-jacket-windproof-waterproof-raincoat-jacket-light-comfy-outdoor.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 7,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 26,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Search for \"{{keyword}}\" and show me the {{item_order}} item {{condition}}",
"instantiation_dict": {
"keyword": "plush toy",
"item_order": "first",
"condition": "that is pink in color"
},
"intent": "Search for \"plush toy\" and show me the first item that is pink in color",
"require_reset": false,
"eval": {
"eval_types": [
"url_match"
],
"reference_answers": null,
"reference_url": "__SHOPPING__/olpchee-foldable-plush-children-s-sofa-backrest-chair-cute-cartoon-infant-baby-seat-for-living-room-bedroom-corgi.html",
"program_html": [],
"url_note": "EXACT"
},
"intent_template_id": 7,
"reasoning_difficulty": "easy",
"visual_difficulty": "easy",
"comments": "",
"overall_difficulty": "easy"
},
{
"sites": [
"shopping"
],
"task_id": 27,
"require_login": true,
"storage_state": "./.auth/shopping_state.json",
"start_url": "__SHOPPING__/",
"geolocation": null,
"intent_template": "Show me the first {{design}} in the search results for \"{{product}}\".",
"instantiation_dict": {
"design": "white table",
"product": "table"
},
"intent": "Show me the first white table in the search results for \"table\".",
"require_reset": false,
"eval": {