-
Notifications
You must be signed in to change notification settings - Fork 17
/
WebArena-Lite_info.json
7863 lines (7863 loc) · 295 KB
/
WebArena-Lite_info.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
[
{
"intent": "Set up a new, empty repository with the name repo_nnknnlmkn_1040?",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Execute a hold action on the order with ID 000000072.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": " Identify the primary concerns that customers are expressing dissatisfaction with regarding the product. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Search for reviews with the nickname 'Mike' and no review provided.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Select the YCZOD summer coastal marine backdrop in color code 27, size 180x120cm Vinyl, and proceed to add it to your cart.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Thumbs down the top 2 posts ever in OldSchoolCool.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Present the products within the \"Styling Tools & Appliances\" category.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Could you help me find the nearest Gas station when I'm at National Civil War Museum?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Identify the complete order from March 11th and 23rd and inform me of the overall expense.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Hunt for \"baby cribs\" with a price tag exceeding $100.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "I'm trying to send a package to Whitewater Rafting, but I'm not sure about the postal code. Could you find out the zip code for Whitewater Rafting for me?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "List all customer phone numbers in the state of Arizona.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Currently, I reside in Phipps Conservatory in Schenley Park and am looking to visit the closest Pharmacy. Could you provide me with the exact distance? I'm also interested in finding out the travel time required to reach the nearest Pharmacy from Phipps Conservatory in Schenley Park.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": " Identify customers who are delighted with the product's performance and quality, showcasing their satisfaction with their purchase. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Gather details of the top-selling products in the specified report, covering the week of June 6 to June 12, 2022, with a monthly filter.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "I'm planning to walk from Perkins Cove to Freedom Trail and then cycle from Freedom Trail to Bruce Museum. Could you tell me how much time each leg of the journey will take?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "How long would it take to walk from Maid of the Mist to Mount Monadnock?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Like all submissions created by widowild in subreddit InternetIsBeautiful",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Build a new discussion platform called 'HealthHive'. It should serve as a hub for in-depth discussions on a wide range of health-related subjects, providing valuable information for individuals and caregivers alike. Please ensure the sidebar features the following categories: health, wellness, and tips.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Identify the customer(s) who have finished the third highest number of orders in the entire history.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Cancel the newsletter of OneStopMarket",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Fetch the details of all completed orders placed between July 25, 2022, and October 18, 2022, and provide the cumulative total price.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Could you please provide me with the phone related to Niagara Falls State Park? I'm trying to gather some specifics and would appreciate your help.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Proceed with printing invoices for the orders addressed to Brian Smith within the period from 02/01/2022 to 05/31/2023.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Inspect the details of the 10th order with the highest transaction amount, where the Grand Total (Base) ranges from 30.1 to 286.5, and the Purchase Date spans from 01/01/2022 to 03/31/2023.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Could you tell me how long it will take to cycle from Hubbard Park to Maine Lobster, and then from Maine Lobster to Morse Farm Maple Sugarworks? I'm planning my bike route and need to schedule my day.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Like all submissions created by twintig5 in subreddit dataisbeautiful",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Choose a size #5 file cabinet storage rack and ensure it's included in your shopping cart.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": " Show me the\"Haidilao Self-heating hot pot(3 flavor availalbe) (New Tomato)\" from the \"Canned, Jarred & Packaged Foods\" category and provide a detailed view of its product specifications. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Post a review of the article \"German scientists show a commercially feasible method for cyanobacteria to extract 17 rare earth elements from low-concentration sources\" in the r/Futurology with my comment \"This could change the geopolitical landscape of rare earth elements!\".",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Calculate the total price for all orders between March 22nd and August 22nd and provide the details.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Calculate the total price for orders placed between November 26, 2022, and December 18, 2022, and provide the amount.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Edit my post on 'Dick Van Dyke, 97, involved in single-car crash in Malibu after colliding into a gate' by adding a line to the body that says 'Thankfully, the renowned actor was unharmed in the accident.'",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": " Identify customers who are pleased with the product's performance and quality. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Grant Jakub Klinkovsk\u00fd and Beno\u00eet Blanchon collaborator status on timeit repository.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Identify and report the total value of orders cancelled between October 3, 2022, and November 11, 2022.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Find the date of my most recent purchase for the \"AiJia Bamboo Brush Set\".",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": " Explore the \"Hair Care\" category and click on the \"Natural First Hair Growth Promoter Tincture - W/Burdock Root, Biotin, Capsicum\" to uncover its specifics. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "I'm planning to cycle from Mystic Aquarium to Stowe, and then continue biking to Quechee Gorge. Could you tell me how long each leg of the trip will take by bicycle?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Find all reviews where the sentiment is 'hate' and the nickname is 'Adena'.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "I'm considering driving from Skiing to GoggleWorks Center for the Arts and was wondering, is it possible to make the journey by car in under an hour?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Identify the completed orders placed between July 25, 2022, and October 21, and sum up their total value.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Please update my OneStopShopping account with my new San Francisco address: 145 Elm Ave, Suite 555, HI, 94101, as I've recently changed locations.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Is it possible to walk from Kent Falls State Park to Perkins Cove in under an hour, or should we consider other modes of transportation?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "How many reviews are there with the description 'ugly'?",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "I need to gather information on how far it is to drive from Mirror Lake to Avalon History Center, and then from Avalon History Center to Otsego Lake. Can you provide the car travel distances for these routes?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "How many customer records are there between ID 10 and ID 68?",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Modify the status to Pending for reviews that are rated as zero.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Claim the task regarding 'broken link checker' in a11yproject.com for further development.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Adjust the price of Augusta Pullover Jacket-S-Orange by an increase of 34",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Currently staying in Princeton University in New Jersey, and I'm looking to head over to Gas station. Could you inform me about the proximity? I'm curious about the exact distance and the time it would take to travel from Princeton University in New Jersey to the closest Gas station.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "I'm trying to compare the walking distance from SteelStacks to East Hampton with the driving distance from Cape Cod Museum of Natural History, Brewster to East Hampton. Could you tell me how much farther one is from the other?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Assign 'Marvel-ous Mischief Managed' as 'Loki2024' bio.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Set the status to 'Approved' for reviews described as 'soft'.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Navigate to a subreddit that specializes in breaking down intricate subjects into understandable explanations and start a new thread titled 'From Ribbon Science to Environmental Impacts: ELI5 Has You Covered'.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Generate a comprehensive review of customer feedback on the armchairs.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Could you help me figure out how far it is from Dock Square to Bruce Museum when I'm riding a bike versus driving a car? I'm currently at Dock Square and am trying to determine the most efficient way to reach Bruce Museum. Can you compare the distances for traveling by bicycle and by car for me?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Inspect the details of the 10th order with the highest transaction value among orders that have been canceled.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Among the top 3 posts in \"videos\" forum, identify any that feature a historical event and provide the event's name and year.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Add 'I need help' to the merge request linked to semantic HTML post within the a11yproject.com project",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Thumbs down the top 2 posts ever in aww.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Tell me who has made the most contributions, in terms of number of commits, to the dblclockfft project?",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Upvote the newest post in nottheonion subreddit",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Which are the top 5 items with the highest sales in June 2022?",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Hunt for the \"Fujifilm X-T4 Mirrorless Camera\" with a price tag exceeding $1500.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Procure a \"Cameras\" product with a price that exceeds $100.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Show me the names of the individuals with the highest number of commits in the metaseq repository's top 3 spots.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Ask for insights on a subreddit that's a hub for uncovering new music genres, with the intriguing title 'A Fusion of Sounds: Exploring Jazz and Post-Rock'. Start the conversation with 'Prepare to have your auditory senses challenged as we delve into the intricate blend of jazz and post-rock. Let's come together to savor the nuanced soundscapes of 'Do Make Say Think's 'Minmin'.'",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Fork timeit",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Get the number of review reports for the product 'Jupiter All-Weather Trainer'.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Compose an engaging post for a local online gathering place that caters to Providence enthusiasts. Head the post with 'Unveiling the Nocturnal Charms: Aerial Views of Providence at Night' and extend a warm invitation with the following message: 'Embark on a journey with us to discover the mesmerizing allure of Providence enveloped in the night's embrace. We invite you to contribute your personal tales and cherished locales for experiencing the city's vibrant nocturnal scene.'",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Launch a new forum section called 'OutdoorOdyssey' dedicated to the thrill-seekers and nature lovers. The description should read: Dive into the ultimate guide to outdoor adventures, encompassing everything from serene hikes to exhilarating camping trips. For the sidebar, include the following tags: [outdoor, adventure, hiking, camping].",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "order report over the last 33 days up to 11/03/2022, please generate",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Like all submissions created by twintig5 in subreddit dataisbeautiful",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "I need to figure out how long it'll take to walk from Bushkill Falls to Strasburg Rail Road, and then the driving time from Strasburg Rail Road to Cove Island Park. Can you provide the durations for both?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Quill down your response as 'It's great to hear about varying perspectives! While the poster has had a positive experience, it sounds like you're coming around to giving the pizza a chance, despite being from the \"all pizza south of Philly sucks\" school of thought. It's encouraging to see that Il Radiccio's offering has piqued your interest. Perhaps giving it a try might exceed your expectations!' to the comment 'is this sarcasm Nope, I found it great. If you don\u2019t like it, not much I can do about that Good call! I'm glad you enjoyed it :D pretty sure they meant it sounded like sarcasm. not that they\u2019ve had it and not liked it As a stuck-up \u201call pizza south of philly sucks\u201d former New Yorker, I\u2019ll say it doesn\u2019t look great but honestly looks more promising to be not total crap than I\u2019ve seen in a while and it raised my eyebrows.. [deleted]' on the poster.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Locate the poster that describes the 'Website that automatically colorizes old black-and-white photos', and comment on it with the following message: 'This is an amazing concept! I can't wait to see the website bringing old black-and-white photos back to life with color. It's like time-traveling with a touch of magic.' This task involves searching for the specific poster and providing your viewpoint as a comment to engage with the content presented.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Locate the 10th post in the 'hot' pics subset, and leave a comment on it saying, 'Incredible! The photo really captures the essence of the character. It's no wonder Jamie Lee Curtis was able to bring the role to life so vividly in EEAAO. Simply inspiring!' This task involves finding the specified post and providing a pre-determined comment to express your thoughts on the imagery and its connection to the referenced performance.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Due to the Juggernaut.Case IMPCT Mount Platform's compatibility issues with RAM Mount Hardware, feeling fragile and having a surface prone to peeling, along with a more complex installation process than anticipated, I am inclined to rate it poorly and caution against it as a dependable vehicle mounting option in my upcoming review.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Collect the ID information for every customer in the ZIP code 84101.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "charging time on their Galaxy S8+ compared to the home charger.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Start a new public project server_ops_android_extra_os and add Koushik, lahwaacz as members.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Among the top 6 posts in \"science\" forum, find the authors who have written about environmental conservation efforts",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Post my question, \"What are the environmental impacts of mining rare earth elements and how can we mitigate them?\" in a subreddit where I'm likely to get an answer.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Locate the poster that features the message 'My Uncle, back in the 1980\u2019s when he was in the Air Force. He retired after 32 years of service.', and in the comments section of the same poster, post the following message: 'What a majestic photo! Your uncle's dedication and service are truly inspiring. It's amazing to see the legacy of the Air Force through the years.' This combined task ensures a seamless transition from finding the specific poster to sharing your thoughts and appreciation in the comments section, maintaining the logical connection between the two actions.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Tell me who has made the most contributions, in terms of number of commits, to the cppmap.docs project?",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Provide a thorough analysis of customer feedback on the graphite pencils.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "I'm planning to cycle from New Hampshire State House to Yale University. Could you find out how far it is if I go by bike?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Generate packing slips for orders that are complete and have a base grand total between 29.5 and 275.6.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Could you help me find out the phone related to Grounds For Sculpture, Hamilton? I'm trying to gather some details and any assistance would be appreciated.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Start a discussion in a local online gathering spot for those who live in or are interested in the Lakewood area. Title your thread 'AT&T Fiber Expansion Updates: What It Means for Lakewood Residents' and provide insights with a message that says 'Uncover the latest on the AT&T Fiber expansion in our neighborhood. Let's discuss how this could affect us as residents or those thinking of becoming part of our community.'",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": " Catalogue the Tools & Home Improvement items from the lowest to the highest price point. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Like the submission by dildobagginss regarding a lawsuit against Amazon in the news subreddit.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": " Find out the product aspects that are pleasing our buyers the most. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": " Gather a comprehensive review of customer feedback pertaining to the sundresses. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Ascertain the complete orders from September 1, 2022, to December 4, 2022, and inform me of the cumulative cost.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": " Highlight the customers who have expressed satisfaction with the product's performance and quality. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Post in r/creepyart subreddit about how psychological horror can be effectively conveyed through visual art.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Hey, I'm currently at Maid of the Mist at Niagara Falls and I'm trying to find the closest Restaurant around here. Could you point me in the right direction?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Review the modifications made to the 'WCAG 2.1 link' updated issue recently to confirm if the correct version has been linked.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Subscribe 'askscience' subforum throuth 'Alphabetical' ",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Retrieve all Reviews with the Status Pending and the Nickname Hugh.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Determine the total value of pending orders from May 22nd to May 23rd and provide a report.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Arrange beddings from highest to lowest and include the 9th item for comparison.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Summarize all orders placed between December 14, 2022, and May 17, 2023, and provide the overall total cost.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Please revise my OneStopShopping account details to reflect my new address at 144 Maple Lane, Suite 444, Chicago, VT, 60601, as I have just relocated.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": " Arrange the PlayStation 4 items from the lowest to the highest cost.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Post in a subreddit for soccer fans and ask for their funniest FIFA-related jokes or memes.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Is it feasible to drive from Mauch Chunk Opera House to Art Galleries, and then cycle from Art Galleries to Hood Museum of Art, all within the span of one hour?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Could you tell me if it's possible to walk from WaterFire to Cornell University without it being more than 30 kilometers?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Among the top 8 posts in \"gifs\" forum, select the post that showcases a handmade item and provide the title and author's name.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Get the purchase date details of the 10 orders with the greatest grand total, between 62.0 and 202.6.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Could you assist me by looking up the phone related to Erie Canal Museum? I'm trying to find some details.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Locate the poster where the statement 'They know it's not really an island, right?' is clarified, and proceed to comment with the following perspective: 'I think the term \"island\" here is metaphorical. It's more about feeling isolated or cut off from the mainland of common knowledge on this topic.' This task involves searching for the specific poster and then sharing your insights as a seamless extension of the initial search process, ensuring continuity in the discussion.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Thumbs down the top 5 posts ever in gifs.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Tell me who has made the most contributions, in terms of number of commits, to the timeit project?",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": " Summary a review overview based on the feedback received from violin buyers. ",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Navigate to a community platform that caters to video game enthusiasts and broadcast our recent discoveries with a discussion thread labeled 'Score! Unbelievable Console Deals We've Snagged in the Gaming Community'.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Update the body of my 'Disney\u2019s \u2018Indiana Jones and the Dial of Destiny\u2019 Planning Cannes Festival Premiere' post with the addition of 'The highly anticipated movie is rumored to make a splash at the renowned film festival.'",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Update 'RocketRaccoon2024' profile with 'Orbiting Life's Excitements'.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Show the date of my most recent acquisition of the \"Blue Sea Photo Backdrop\".",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Present the products within the \"Hair Coloring Products\" category.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Like the submission by moon___fish discussing strategies to avoid US politics on Reddit, which is the 6th most active post in the AskReddit subreddit.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "I need you to provide the token for the RSS feed.",
"sites": [
"gitlab"
],
"start_url": "__GITLAB__"
},
{
"intent": "Could you please help me find out the postal code for Corning Museum of Glass? I need it for some paperwork and I'm not sure what it is.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Thumbs up the submission by HALabunga discussing a personal robbery experience at a laundromat, listed as the 7th most commented in the baltimore subreddit.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Share the \"Late train pixelart\" gif in a subreddit dedicated to pixel art enthusiasts and ask for feedback.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Obtain the ID information for all products where the name is 'Hero Hoodie' and the type is 'Configurable Product'.",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Look for Ibuprofen.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Modify the status of all reviews with the content \"hate\" to \"Not Approved\".",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Determine the total value of pending orders placed between March 11, 2023, and May 17, 2023, and report the sum.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Insert a customer record with the details: First Name: Elizabeth, Last Name: Moore, Email: [email protected].",
"sites": [
"shopping_admin"
],
"start_url": "__SHOPPING_ADMIN__"
},
{
"intent": "Like all submissions created by Vertsix in subreddit iphone",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Dislike the submission from the author Sufficient-Error269 discussing nightlife recreational preferences, found as the last entry in the top 8 active posters in the subreddit IAmA.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Please gather the driving distances for me. I need to know how far it is by car from Vermont Teddy Bear Factory, Shelburne to U.S. Capitol, and also the distance from U.S. Capitol to High Peaks Wilderness when traveling by car.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Could you help me find the closest Clinic to my current location at Times Square in New York City?",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "Find order number 181 and select the \"Reorder\" option.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Could you find out how far it is to cycle from Ohiopyle State Park to Roosevelt Island Tramway, NYC? I'm planning a bike trip and need to know the distance.",
"sites": [
"map"
],
"start_url": "__MAP__"
},
{
"intent": "In the subreddit funny, find the user who shared a method of communication to prevent running out of milk with their four kids, and view their submissions.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Subscribe 'philadelphia' subforum throuth 'Alphabetical' ",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Show the products within the \"DVD Players & Recorders\" category.",
"sites": [
"shopping"
],
"start_url": "__SHOPPING__"
},
{
"intent": "Among the top 10 most_commented posts, thumbs up the submission detailing the rescue of a young boy in Florida by the author ConquerWyoming in subreddit UpliftingNews.",
"sites": [
"reddit"
],
"start_url": "__REDDIT__"
},
{
"intent": "Among the top 7 posts in \"singularity\" forum, identify the posts that discuss advancements in AI technology and list their titles.",
"sites": [
"reddit"
],