-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2425 lines (2392 loc) · 305 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="description"
content="WebArena: A Realistic Web Environment for Building Autonomous Agents."
/>
<meta name="keywords" content="WebArena" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
WebArena: A Realistic Web Environment for Building Autonomous Agents
</title>
<link
href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet"
/>
<link rel="stylesheet" href="./static/css/bulma.min.css" />
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css" />
<link rel="stylesheet" href="./static/css/bulma-slider.min.css" />
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"
/>
<link rel="stylesheet" href="./static/css/index.css" />
<!-- <link rel="icon" href="./static/images/favicon.svg"> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
<script src="./static/js/index.js"></script>
</head>
<body>
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title">
WebArena: A Realistic Web Environment for Building Autonomous
Agents
</h1>
<div class="is-size-5 publication-authors">
<span class="author-block">
<a href="https://shuyanzhou.github.io/">Shuyan Zhou</a
><sup>1*</sup>,</span
>
<span class="author-block">
<a href="https://frankxfz.me/">Frank F. Xu</a
><sup>1*</sup>,</span
>
<br />
<span class="author-block">
<a href="https://www.zhuhao.me/">Hao Zhu</a><sup>1+</sup>,
</span>
<span class="author-block">
<a href="https://xuhuiz.com/">Xuhui Zhou</a><sup>1+</sup>,
</span>
<span class="author-block">
<a href="https://robertlo.tech/">Robert Lo</a><sup>1+</sup>,
</span>
<span class="author-block">
<a href="https://www.linkedin.com/in/abishek-sridhar5/"
>Abishek Sridhar</a
><sup>1+</sup>,
</span>
<br />
<span class="author-block">
<a href="https://xianyicheng.github.io/">Xianyi Cheng</a
><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://xianyicheng.github.io/">Tianyue Ou</a
><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://yonatanbisk.com/">Yonatan Bisk</a
><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://dpfried.github.io/">Daniel Fried</a
><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://urialon.ml/">Uri Alon</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="http://www.phontron.com/">Graham Neubig</a
><sup>1,2</sup>.
</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block"
><sup>1</sup>Carnegie Mellon University,</span
>
<span class="author-block"><sup>2</sup>Inspired Cognition</span>
<br />
<span class="author-block"><sup>*</sup>Lead contributors.</span>
<span class="author-block"
><sup>+</sup>Equal contribution.</span
>
<br />
<span class="author-block">{shuyanzh,fangzhex,gneubig}@cs.cmu.edu</span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<!-- PDF Link. -->
<span class="link-block">
<a
href="https://arxiv.org/pdf/2307.13854.pdf"
class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="fas fa-file-pdf"></i>
</span>
<span>Paper</span>
</a>
</span>
<span class="link-block">
<a
href="https://github.com/web-arena-x/webarena"
class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
</span>
<!-- Dataset Link. -->
<span class="link-block">
<a
href="https://github.com/web-arena-x/webarena/blob/main/config_files/test.raw.json"
class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="far fa-images"></i>
</span>
<span>Data</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a
href="https://github.com/web-arena-x/webarena/tree/main/environment_docker"
class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="fas fa-desktop"></i>
</span>
<span>Docker Environment</span>
</a>
</span>
<span class="link-block">
<a
href="https://docs.google.com/spreadsheets/d/1M801lEpBbKSNwP-vDBkC_pF7LdyGU1f_ufZb_NWNBZQ/edit?usp=sharing"
class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="fas fa-water"></i>
</span>
<span>Leaderboard</span>
</a>
</span>
</div>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<span class="link-block">
<a
href="https://the-agent-company.com/"
class="external-link button is-normal is-rounded is-dark"
>
<span>Our new benchmark TheAgentComanpy!</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="hero teaser">
<div class="container is-max-desktop">
<div class="hero-body">
<img src="./static/images/overview.png" />
<h2 class="subtitle has-text-centered">
WebArena is a standalone, self-hostable web environment for building
autonomous agents. WebArena creates websites from four popular
categories with functionality and data mimicking their real-world
equivalents. To emulate human problem-solving, WebArena also embeds
tools and knowledge resources as independent websites. WebArena
introduces a benchmark on interpreting high-level realistic natural
language command to concrete web-based interactions. We provide
annotated programs designed to programmatically validate the
functional correctness of each task.
</h2>
</div>
</div>
</section>
<!-- <section class="section"> -->
<!-- <div class="container is-max-desktop"> -->
<!-- Abstract. -->
<!-- <div class="columns is-centered has-text-centered"> -->
<!-- <div class="column is-four-fifths"> -->
<!-- <h2 class="title is-3">Abstract</h2> -->
<!-- <div class="content has-text-justified"> -->
<!-- <p> -->
<!-- With generative AI advances, the exciting potential for -->
<!-- autonomous agents to manage daily tasks via natural language -->
<!-- commands has emerged. However, cur rent agents are primarily -->
<!-- created and tested in simplified synthetic environments, -->
<!-- substantially limiting real-world scenario representation. -->
<!-- </p> -->
<!-- <p> -->
<!-- In this paper, we build an environment for agent command and -->
<!-- control that is highly realistic and reproducible. Specifically, -->
<!-- we focus on agents that perform tasks on websites, and we create -->
<!-- an environment with fully functional websites from four common -->
<!-- domains: e-commerce, social forum discussions, collaborative -->
<!-- software development, and content management. Our environment is -->
<!-- enriched with tools (e.g., a map) and external knowledge bases -->
<!-- (e.g., user manuals) to encourage human-like task-solving. -->
<!-- </p> -->
<!-- <p> -->
<!-- Building upon our environment, we release a set of benchmark -->
<!-- tasks focusing on evaluating the functional correctness of task -->
<!-- completions. The tasks in our benchmark are diverse, -->
<!-- long-horizon, and are designed to emulate tasks that humans -->
<!-- routinely perform on the internet. We design and implement -->
<!-- several autonomous agents, integrating recent techniques such as -->
<!-- reasoning before acting. The results demonstrate that solving -->
<!-- complex tasks is challenging: our best GPT-4-based agent only -->
<!-- achieves an end-to-end task success rate of 10.59%. These -->
<!-- results highlight the need for further development of robust -->
<!-- agents, that current state-of-the-art LMs are far from perfect -->
<!-- peformance in these real-life tasks, and that WebArena can be -->
<!-- used to measure such progress. -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- / Abstract. -->
<!-- </div> -->
<!-- </section> -->
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">WebArena Website Demos</h2>
</div>
</div>
<div class="content has-text-centered">
<p>
The videos demonstrate various tasks that can be performed in WebArena.
</p>
</div>
</div>
</section>
<section class="hero is-light is-small">
<div class="hero-body">
<div class="container">
<div id="1-carousel" class="carousel results-carousel">
<div class="item item-1">
<video
poster=""
id="1"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/shopping_browse_buy_comment.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-2">
<video
poster=""
id="2"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/shopping_advancedsearch.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-3">
<video
poster=""
id="3"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/shopping_myaccount.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-4">
<video
poster=""
id="4"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/shopping_admin.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-5">
<video
poster=""
id="5"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/calculator.mp4" type="video/mp4" />
</video>
</div>
<div class="item item-6">
<video
poster=""
id="6"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/scrathpad.mp4" type="video/mp4" />
</video>
</div>
<div class="item item-7">
<video
poster=""
id="7"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/adobe_.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>
<div class="hero-body">
<div class="container">
<div id="2-carousel" class="carousel results-carousel">
<div class="item item-8">
<video
poster=""
id="8"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/reddit_browing_change_profile.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-9">
<video
poster=""
id="9"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/reddit_new.mp4" type="video/mp4" />
</video>
</div>
<div class="item item-10">
<video
poster=""
id="10"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/gitlab_browse.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-11">
<video
poster=""
id="11"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/gitlab_create_new_project.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-12">
<video
poster=""
id="12"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/gitlab_merge.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-13">
<video
poster=""
id="13"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/map.mp4" type="video/mp4" />
</video>
</div>
<div class="item item-14">
<video
poster=""
id="14"
autoplay
controls
muted
loop
playsinline
height="100%"
>
<source src="./static/videos/wiki.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>
</section>
<section class="section", id="try-it-yourself">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column">
<h2 class="title is-3">Try it yourself:</h2>
<div class="content has-text-justified">
<div class="column has-text-centered">
<div class="publication-links">
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:9999/forums/all"
class="external-link button is-normal is-rounded is-dark"
>
<span>Social Forum</span>
</a>
</span>
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:7770"
class="external-link button is-normal is-rounded is-dark"
>
<span>Online Shopping</span>
</a>
</span>
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:7780/admin"
class="external-link button is-normal is-rounded is-dark"
>
<span>Content Management (u: admin, p: admin1234)</span>
</a>
</span>
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:8023/explore"
class="external-link button is-normal is-rounded is-dark"
>
<span>Collaborative Software Development</span>
</a>
</span>
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:3000/"
class="external-link button is-normal is-rounded is-dark"
>
<span>Map</span>
</a>
</span>
<span class="link-block">
<a
href="http://ec2-3-131-244-37.us-east-2.compute.amazonaws.com:8888/wikipedia_en_all_maxi_2022-05/A/User:The_other_Kiwix_guy/Landing"
class="external-link button is-normal is-rounded is-dark"
>
<span>Wiki</span>
</a>
</span>
<span class="link-block">
<a
href="http://metis.lti.cs.cmu.edu:4399/calculator.html"
class="external-link button is-normal is-rounded is-dark"
>
<span>Calculator</span>
</a>
</span>
<span class="link-block">
<a
href="http://metis.lti.cs.cmu.edu:4399/scratchpad.html"
class="external-link button is-normal is-rounded is-dark"
>
<span>Scratchpad</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column">
<div class="content">
<h2 class="title is-3">Agent on Gitlab</h2>
<video
id="dollyzoom"
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/agent_gitlab.mp4"
type="video/mp4"
/>
</video>
<div class="content has-text-justified">
<p>"Set up a new, empty repository with the name awesome_llm_reading"</p>
</div>
</div>
</div>
<div class="column">
<div class="columns is-centered">
<div class="column content">
<h2 class="title is-3">Agent on Shopping Website</h2>
<video
id="matting-video"
controls
muted
loop
playsinline
height="100%"
>
<source
src="./static/videos/agent_shop.mp4"
type="video/mp4"
/>
</video>
<div class="content has-text-justified">
<p> "Tell me the status of my latest order and when will it arrive" </p>
</div>
</div>
</div>
</div>
</div>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Realistic Tasks on WebArena</h2>
<img src="./static/images/tasks.png" />
<div class="content has-text-justified">
<p>
A high-level task that can be fully executed in WebArena.
Completing such tasks requires sophisticated, long-term
planning and reasoning capability. To accomplish the goal
stated on the top, an agent needs to find out what art
museums are located in Pittsburgh by searching Wikipedia.
Next, it should identify the location of each museum on a
map, optimizing the itinerary based on the information
collected. Finally, the agent needs to update the README
file in the appropriate repository with the planned route.
</p>
</div>
<div class="card mb-4 mt-4 text-dark bg-light"></div>
<h3 class="title is-4">List of Tasks</h3>
<div class="select is-multiple">
<select multiple size="8">
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Subscribe to the newsletter of OneStopMarket</a>
<option value="">Subscribe to the newsletter of OneStopMarket</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the the number of reviews that our store received by far that mention term "best"</a>
<option value="">Tell me the the number of reviews that our store received by far that mention term "best"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What's the closest national park to the largest city in Maine?</a>
<option value="">What's the closest national park to the largest city in Maine?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Cancel order 307</a>
<option value="">Cancel order 307</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Measure distance between Carnegie Music Hall and UPMC Shadyside by walking</a>
<option value="">Measure distance between Carnegie Music Hall and UPMC Shadyside by walking</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport</a>
<option value="">Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I recently moved, my address is 654 Aspen Road, House #3, Boston, MA, 02110, update my information on OneStopShopping accordingly</a>
<option value="">I recently moved, my address is 654 Aspen Road, House #3, Boston, MA, 02110, update my information on OneStopShopping accordingly</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the path and travel time from home of the 1980 Super Bowl champions to home of the 1991 Super Bowl champions.</a>
<option value="">Show me the path and travel time from home of the 1980 Super Bowl champions to home of the 1991 Super Bowl champions.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the coordinates of Apple Store near Pitt in DD format</a>
<option value="">Tell me the coordinates of Apple Store near Pitt in DD format</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a repo named nolan_honest_fans with movies directed by Christopher Nolan in a README file</a>
<option value="">Create a repo named nolan_honest_fans with movies directed by Christopher Nolan in a README file</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Compare the payment difference of the last 4 cancelled orders and completed orders</a>
<option value="">Compare the payment difference of the last 4 cancelled orders and completed orders</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Set my gitlab status as Enjoying life.</a>
<option value="">Set my gitlab status as Enjoying life.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?</a>
<option value="">From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add a simple product named Energy-Bulk Man Yoga Pant with 50 in stock, available in size 38 and color yellow, priced at $69.99</a>
<option value="">Add a simple product named Energy-Bulk Man Yoga Pant with 50 in stock, available in size 38 and color yellow, priced at $69.99</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add this product to my wishlist</a>
<option value="">Add this product to my wishlist</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Summarize customer reviews for Amazon Echo Dot 3rd generation.</a>
<option value="">Summarize customer reviews for Amazon Echo Dot 3rd generation.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the way from Carnegie Mellon University to the home stadium of NYC NBA team </a>
<option value="">Show me the way from Carnegie Mellon University to the home stadium of NYC NBA team </option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the total count of Not Approved reviews amongst all the reviews?</a>
<option value="">What is the total count of Not Approved reviews amongst all the reviews?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the email address of the customer who is the most unhappy with the style of Zoe products</a>
<option value="">Show me the email address of the customer who is the most unhappy with the style of Zoe products</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add a new color option brown to the size S of Phoebe Zipper Sweatshirt</a>
<option value="">Add a new color option brown to the size S of Phoebe Zipper Sweatshirt</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the website of Carnegie art museum in pittsburgh</a>
<option value="">What is the website of Carnegie art museum in pittsburgh</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Follow ['Jakub Klinkovsk', 'convexegg', 'Vinta Chen', 'yjlou', 'Abishek S'] on Gitlab</a>
<option value="">Follow ['Jakub Klinkovsk', 'convexegg', 'Vinta Chen', 'yjlou', 'Abishek S'] on Gitlab</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add a white computer desk to my wish list.</a>
<option value="">Add a white computer desk to my wish list.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Get the customer name of the earliest fraud suspect order</a>
<option value="">Get the customer name of the earliest fraud suspect order</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How many commits did Eric and Kilian make to a11yproject on 1/3/2023?</a>
<option value="">How many commits did Eric and Kilian make to a11yproject on 1/3/2023?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the the number of reviews that our store received by far that mention term "satisfied"</a>
<option value="">Tell me the the number of reviews that our store received by far that mention term "satisfied"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the full names of the repositories where I made contributions and they got no stars?</a>
<option value="">Tell me the full names of the repositories where I made contributions and they got no stars?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Find the page of the place in Pennsylvania where a plane crashed during the September 11th attacks on the map.</a>
<option value="">Find the page of the place in Pennsylvania where a plane crashed during the September 11th attacks on the map.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel</a>
<option value="">I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I previously ordered some a mattress foundation around Feb or March 2023 and later cancelled. Can you reorder it for me?</a>
<option value="">I previously ordered some a mattress foundation around Feb or March 2023 and later cancelled. Can you reorder it for me?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the way from Carnegie Mellon University to the home stadium of Yankees in the 80th</a>
<option value="">Show me the way from Carnegie Mellon University to the home stadium of Yankees in the 80th</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Find the resturants around CMU ArtPark Lab</a>
<option value="">Find the resturants around CMU ArtPark Lab</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Find a GitLab repository related to gan implementation and make a Reddit post linking to it in a relevant subreddit</a>
<option value="">Find a GitLab repository related to gan implementation and make a Reddit post linking to it in a relevant subreddit</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Like all submissions created by Hrekires in subreddit news</a>
<option value="">Like all submissions created by Hrekires in subreddit news</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>List the top 2 search terms in my store</a>
<option value="">List the top 2 search terms in my store</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 31 cards</a>
<option value="">I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 31 cards</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me products under $30 in "men shoes" category</a>
<option value="">Show me products under $30 in "men shoes" category</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How much I spent on cooking and food shopping during March 2022</a>
<option value="">How much I spent on cooking and food shopping during March 2022</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Buy the highest rated product from the Beauty & Personal Care category within a budget under 20.</a>
<option value="">Buy the highest rated product from the Beauty & Personal Care category within a budget under 20.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Fill the "contact us" form in the site for a refund on the bluetooth speaker I bought, stating that it broke after just three days of use. Also, ensure to include the order number #161 and the product SKU. Don't submit yet, I will check.</a>
<option value="">Fill the "contact us" form in the site for a refund on the bluetooth speaker I bought, stating that it broke after just three days of use. Also, ensure to include the order number #161 and the product SKU. Don't submit yet, I will check.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Change my reddit bio to "Pro Python Developer with 20 years of Experience"</a>
<option value="">Change my reddit bio to "Pro Python Developer with 20 years of Experience"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Buy the highest rated product from the Ceiling light category within a budget above 1000.</a>
<option value="">Buy the highest rated product from the Ceiling light category within a budget above 1000.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the minimum travel time by car from Schenley park to Upitt?</a>
<option value="">What is the minimum travel time by car from Schenley park to Upitt?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the coordinates of Tokyo Japanese Food Store in Pittsburgh in DD format</a>
<option value="">Tell me the coordinates of Tokyo Japanese Food Store in Pittsburgh in DD format</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Delete all pending negative reviews for Circe fleece</a>
<option value="">Delete all pending negative reviews for Circe fleece</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the estimated driving time between the hometown of Joe Biden and Bridgeport?</a>
<option value="">What is the estimated driving time between the hometown of Joe Biden and Bridgeport?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How much I spend in March 2023 on shopping at One Stop Market?</a>
<option value="">How much I spend in March 2023 on shopping at One Stop Market?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Which customer has placed 2 orders in the entire history?</a>
<option value="">Which customer has placed 2 orders in the entire history?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Open the thread of a trending post on the forum "consoles" and subscribe.</a>
<option value="">Open the thread of a trending post on the forum "consoles" and subscribe.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the zip code of Yale University?</a>
<option value="">What is the zip code of Yale University?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Cancel order 301</a>
<option value="">Cancel order 301</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Among the top 10 post in "books" forum, show me the book names from posts that recommand a single book</a>
<option value="">Among the top 10 post in "books" forum, show me the book names from posts that recommand a single book</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Fork the Pytorch GAN repo with most stars.</a>
<option value="">Fork the Pytorch GAN repo with most stars.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add a white desk to my wish list.</a>
<option value="">Add a white desk to my wish list.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.</a>
<option value="">Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Set my gitlab status as Playing Badminton.</a>
<option value="">Set my gitlab status as Playing Badminton.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Draft an email to the shop owner via their contact us function for a coupon as I plan to make a bulk purchase</a>
<option value="">Draft an email to the shop owner via their contact us function for a coupon as I plan to make a bulk purchase</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create an orders report from beginning of May 2021 to end of March 2022</a>
<option value="">Create an orders report from beginning of May 2021 to end of March 2022</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Notify Jane Doe in their most recent pending order with message "sorry we are out of stock, please reorder"</a>
<option value="">Notify Jane Doe in their most recent pending order with message "sorry we are out of stock, please reorder"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Set up a new, empty repository with the name awesome_program_aided_reasoning?</a>
<option value="">Set up a new, empty repository with the name awesome_program_aided_reasoning?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Invite Jakub K, Alex Dills, Alex Hutnik and Benoît Blanchon as collaborator to my time tracking tool project repo</a>
<option value="">Invite Jakub K, Alex Dills, Alex Hutnik and Benoît Blanchon as collaborator to my time tracking tool project repo</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a coupons report from 05/01/2021 to 05/15/2023</a>
<option value="">Create a coupons report from 05/01/2021 to 05/15/2023</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Which US states border Massachusetts?</a>
<option value="">Which US states border Massachusetts?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>List out reviewers, if exist, who mention about ear cups being small</a>
<option value="">List out reviewers, if exist, who mention about ear cups being small</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Gather the titles of Doc and Pies Arcade Factory Cocktail Arcade Machine reviews with 3 stars and less rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Doc and Pies Arcade Factory Cocktail Arcade Machine"</a>
<option value="">Gather the titles of Doc and Pies Arcade Factory Cocktail Arcade Machine reviews with 3 stars and less rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Doc and Pies Arcade Factory Cocktail Arcade Machine"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?</a>
<option value="">How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a milestone for the upcoming practice of collective code review starting on 1/16/2023 and ending on in 20 days</a>
<option value="">Create a milestone for the upcoming practice of collective code review starting on 1/16/2023 and ending on in 20 days</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post a notice on a virtual meetup for book reading enthusiasts on March 15th in the r/books subreddit</a>
<option value="">Post a notice on a virtual meetup for book reading enthusiasts on March 15th in the r/books subreddit</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post in the most appropriate subreddit and ask for recommendations for sony headphones products within a budget of $500</a>
<option value="">Post in the most appropriate subreddit and ask for recommendations for sony headphones products within a budget of $500</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add new size 30 and 31 to all color variants of Diana Tights</a>
<option value="">Add new size 30 and 31 to all color variants of Diana Tights</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show the most recent out of delivery order</a>
<option value="">Show the most recent out of delivery order</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Change the page title of "About us" page on my site to "Secret".</a>
<option value="">Change the page title of "About us" page on my site to "Secret".</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post in dataisbeautiful forum about what could large language models help the correpong field.</a>
<option value="">Post in dataisbeautiful forum about what could large language models help the correpong field.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Start a private project AGISite with JEKYLL template and add Rohan and Vinta as members</a>
<option value="">Start a private project AGISite with JEKYLL template and add Rohan and Vinta as members</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Reply to the post with my comment "???"</a>
<option value="">Reply to the post with my comment "???"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Among the top 10 post in "books" forum, show me the author name and the book name from posts that recommand a single book</a>
<option value="">Among the top 10 post in "books" forum, show me the author name and the book name from posts that recommand a single book</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the reasons why customers like Circe hooded fleece</a>
<option value="">Tell me the reasons why customers like Circe hooded fleece</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Get the total payment amount of the last 2 completed orders</a>
<option value="">Get the total payment amount of the last 2 completed orders</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the closest cafe(s) to CMU Hunt library</a>
<option value="">Tell me the closest cafe(s) to CMU Hunt library</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How many commits did Eric make on 3/2?</a>
<option value="">How many commits did Eric make on 3/2?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post a review of my recent reading "Gone with the wind" in the r/books with my comment "It's a book with history".</a>
<option value="">Post a review of my recent reading "Gone with the wind" in the r/books with my comment "It's a book with history".</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post a notice on a virtual meetup for Big little lies enthusiasts on Sep 10th in the books subreddit</a>
<option value="">Post a notice on a virtual meetup for Big little lies enthusiasts on Sep 10th in the books subreddit</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Like all submissions created by CameronKelsey in subreddit earthporn</a>
<option value="">Like all submissions created by CameronKelsey in subreddit earthporn</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>List all opened issues that don't have any labels</a>
<option value="">List all opened issues that don't have any labels</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add the product with the lowest per unit price from my open tabs to the shopping cart</a>
<option value="">Add the product with the lowest per unit price from my open tabs to the shopping cart</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University</a>
<option value="">Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the the number of reviews that our store received by far that mention term "decent"</a>
<option value="">Tell me the the number of reviews that our store received by far that mention term "decent"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Search for "switch accessories"</a>
<option value="">Search for "switch accessories"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How many commits did Kilian make durning 2023?</a>
<option value="">How many commits did Kilian make durning 2023?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Draft a refund message via their "contact us" form for the bluetooth speaker I bought Feb 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet</a>
<option value="">Draft a refund message via their "contact us" form for the bluetooth speaker I bought Feb 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the route and driving time from Allentown, PA to the city where my E-commerce customer Amanda Kim lives</a>
<option value="">Show me the route and driving time from Allentown, PA to the city where my E-commerce customer Amanda Kim lives</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Gather the titles of Racing Wheel Overdrive for Xbox X reviews with 1 star rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Racing Wheel Overdrive for Xbox X"</a>
<option value="">Gather the titles of Racing Wheel Overdrive for Xbox X reviews with 1 star rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Racing Wheel Overdrive for Xbox X"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add this product to my wishlist</a>
<option value="">Add this product to my wishlist</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Fork 2019-nCov.</a>
<option value="">Fork 2019-nCov.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add Light Blue Simple Summer New Low Heels Slippers for Women Fashion Chunky Heels Pointed Toe Wine Glasses Sandals Comfortable Walking Shoes Ladies All-Match Sexy Party Shoes to my wish list</a>
<option value="">Add Light Blue Simple Summer New Low Heels Slippers for Women Fashion Chunky Heels Pointed Toe Wine Glasses Sandals Comfortable Walking Shoes Ladies All-Match Sexy Party Shoes to my wish list</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a private JEKYLL repository called "11711_gitlab" using the right template to speed up development.</a>
<option value="">Create a private JEKYLL repository called "11711_gitlab" using the right template to speed up development.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Find the customer name and email with phone number 8015551212</a>
<option value="">Find the customer name and email with phone number 8015551212</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I am doing a market survey for one stop market, show me the most expensive product from Household Supplies category</a>
<option value="">I am doing a market survey for one stop market, show me the most expensive product from Household Supplies category</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>List out reviewers, if exist, who mention about good fingerprint resistant</a>
<option value="">List out reviewers, if exist, who mention about good fingerprint resistant</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Gather the titles of Sony Computer Entertainment VR reviews with 2 stars and less rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Sony Computer Entertainment VR"</a>
<option value="">Gather the titles of Sony Computer Entertainment VR reviews with 2 stars and less rating from OneStopShop, and post them in the games subreddit under the title "real user feedback on Sony Computer Entertainment VR"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add a new size XXS to blue and purple Nona Fitness Tank</a>
<option value="">Add a new size XXS to blue and purple Nona Fitness Tank</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Display the list of issues in the keycloak/keycloak repository that have labels related to flaky-test</a>
<option value="">Display the list of issues in the keycloak/keycloak repository that have labels related to flaky-test</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.</a>
<option value="">I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Like all submissions created by ThetaGang_wsb in subreddit wallstreetbets</a>
<option value="">Like all submissions created by ThetaGang_wsb in subreddit wallstreetbets</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Make all Aeno capri as out of stock</a>
<option value="">Make all Aeno capri as out of stock</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Delete all reviews from the scammer Carlo</a>
<option value="">Delete all reviews from the scammer Carlo</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Check out my todos</a>
<option value="">Check out my todos</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>DisLike all submissions created by Hrekires in subreddit news</a>
<option value="">DisLike all submissions created by Hrekires in subreddit news</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>5 blue Cronus yoga pants with size 33 arrived, update the stock</a>
<option value="">5 blue Cronus yoga pants with size 33 arrived, update the stock</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the reasons why customers like Ana Running Short</a>
<option value="">Tell me the reasons why customers like Ana Running Short</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Provide me with the full names of chargers from Anker, and also share the price range for the available models</a>
<option value="">Provide me with the full names of chargers from Anker, and also share the price range for the available models</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a private HTML repository called "web_agent_index" using the right template to speed up development.</a>
<option value="">Create a private HTML repository called "web_agent_index" using the right template to speed up development.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Modify the address of order #65 to 789 Pine Lane, San Francisco, CA, 94102</a>
<option value="">Modify the address of order #65 to 789 Pine Lane, San Francisco, CA, 94102</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How much refund I should expect from my order canlled in 2022, including shipping fee</a>
<option value="">How much refund I should expect from my order canlled in 2022, including shipping fee</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 40 cards</a>
<option value="">I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 40 cards</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What brands appear most frequently among the top search terms?</a>
<option value="">What brands appear most frequently among the top search terms?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the email address of the customer who is the most unhappy with Circe fleece</a>
<option value="">Show me the email address of the customer who is the most unhappy with Circe fleece</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Disable Teton pullover hoodie from the site, they are facing some quality issues.</a>
<option value="">Disable Teton pullover hoodie from the site, they are facing some quality issues.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.</a>
<option value="">Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Where is the nearest gas station from CMU </a>
<option value="">Where is the nearest gas station from CMU </option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Checkout merge requests requiring my review</a>
<option value="">Checkout merge requests requiring my review</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University</a>
<option value="">Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?</a>
<option value="">Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Update order #304 with the USPS tracking number 13849373987</a>
<option value="">Update order #304 with the USPS tracking number 13849373987</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a folder named real_space in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the space?</a>
<option value="">Create a folder named real_space in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the space?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What are the main criticisms of this product? Please extract the relevant sentences.</a>
<option value="">What are the main criticisms of this product? Please extract the relevant sentences.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Delete all negative reviews for Sybil running short</a>
<option value="">Delete all negative reviews for Sybil running short</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Increase the price of black fitness tshirts from Desiree with size XS by 37%</a>
<option value="">Increase the price of black fitness tshirts from Desiree with size XS by 37%</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.</a>
<option value="">Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Show me the command to clone metaseq with SSH.</a>
<option value="">Show me the command to clone metaseq with SSH.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>List the customer names who complain about the quality of EYZUTAK phone cases</a>
<option value="">List the customer names who complain about the quality of EYZUTAK phone cases</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Increase the price of all blue running tshirts in extra small and small sizes by 23%</a>
<option value="">Increase the price of all blue running tshirts in extra small and small sizes by 23%</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Lookup orders that are processing</a>
<option value="">Lookup orders that are processing</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the full names of the repositories where I made contributions and they got more than 100 stars?</a>
<option value="">Tell me the full names of the repositories where I made contributions and they got more than 100 stars?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Re-post the image of costume contest in this page to funny subreddit and note "from /f/pics"</a>
<option value="">Re-post the image of costume contest in this page to funny subreddit and note "from /f/pics"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Cancel order 302</a>
<option value="">Cancel order 302</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How much refund I should expect from my order canlled in May 2023 if I cannot get the shipping fee refunded?</a>
<option value="">How much refund I should expect from my order canlled in May 2023 if I cannot get the shipping fee refunded?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Get the billing name of the oldest complete order</a>
<option value="">Get the billing name of the oldest complete order</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the phone number of Western Pennsylvania Hospital</a>
<option value="">What is the phone number of Western Pennsylvania Hospital</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Delete all reviews from the scammer Arden</a>
<option value="">Delete all reviews from the scammer Arden</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Abishek wants to check my dotfile configurations. Please invite him to the repo as a guest.</a>
<option value="">Abishek wants to check my dotfile configurations. Please invite him to the repo as a guest.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Add the following users to my GitHub timeline item management extension as maintainer: ['abisubramanya27', 'lahwaacz']</a>
<option value="">Add the following users to my GitHub timeline item management extension as maintainer: ['abisubramanya27', 'lahwaacz']</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the email address, name, phone number of the customer who has the most cancellations in the history</a>
<option value="">Tell me the email address, name, phone number of the customer who has the most cancellations in the history</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Reply to the first reply in this post with ""don't panic""</a>
<option value="">Reply to the first reply in this post with ""don't panic""</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>I want to browse the products in the Video Game category</a>
<option value="">I want to browse the products in the Video Game category</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Open my latest created issue that has feature in its title to check if it is closed</a>
<option value="">Open my latest created issue that has feature in its title to check if it is closed</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Open an issue to ask their plan on supporting Llama and other llama family models in metaseq.</a>
<option value="">Open an issue to ask their plan on supporting Llama and other llama family models in metaseq.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Update the project site's title to "Title Wanted"</a>
<option value="">Update the project site's title to "Title Wanted"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Post "close because non reproducible" for the merge request related to focus edge cases in a11yproject/a11yproject.com project</a>
<option value="">Post "close because non reproducible" for the merge request related to focus edge cases in a11yproject/a11yproject.com project</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Tell me the full names of the repositories where I made contributions and they got the most stars?</a>
<option value="">Tell me the full names of the repositories where I made contributions and they got the most stars?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a new public project "awesome-llms" and add primer, convexegg, abishek as members</a>
<option value="">Create a new public project "awesome-llms" and add primer, convexegg, abishek as members</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Among the top 10 post in "books" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved</a>
<option value="">Among the top 10 post in "books" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a repo named nolan_young_fans with movies directed by Christopher Nolan after 2010 in a README file</a>
<option value="">Create a repo named nolan_young_fans with movies directed by Christopher Nolan after 2010 in a README file</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a discussion post about "Harry Potter movie series" in a relevant subreddit and ask users for their opinions with the simple prompt, "your opinion"</a>
<option value="">Create a discussion post about "Harry Potter movie series" in a relevant subreddit and ask users for their opinions with the simple prompt, "your opinion"</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Find a subreddit focused on topics related to ML, DL, NLP, and post my question, "what is the SOTA web navigation agent repo" there</a>
<option value="">Find a subreddit focused on topics related to ML, DL, NLP, and post my question, "what is the SOTA web navigation agent repo" there</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a product view report from 07/05/2021 to 05/31/2023</a>
<option value="">Create a product view report from 07/05/2021 to 05/31/2023</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?</a>
<option value="">What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Fork MetaSeq.</a>
<option value="">Fork MetaSeq.</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center</a>
<option value="">Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Modify the address of order #125 to 654 Elm Drive, Apartment 12, Miami, FL, 33101</a>
<option value="">Modify the address of order #125 to 654 Elm Drive, Apartment 12, Miami, FL, 33101</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>How long does it take to walk from the starbuck near CMU to Chatham university?</a>
<option value="">How long does it take to walk from the starbuck near CMU to Chatham university?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Presents the monthly count of successful orders from May to December 2022 in MM:COUNT format</a>
<option value="">Presents the monthly count of successful orders from May to December 2022 in MM:COUNT format</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Create a new forum named cmu_lti, with a description of Language Technologies Institute at Carnegie Mellon University, and include ['announcement', 'paper', 'alumni'] in the sidebar?</a>
<option value="">Create a new forum named cmu_lti, with a description of Language Technologies Institute at Carnegie Mellon University, and include ['announcement', 'paper', 'alumni'] in the sidebar?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?</a>
<option value="">From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Invite Benoît and Abishek as collaborator to my HTML5 markup extention repo</a>
<option value="">Invite Benoît and Abishek as collaborator to my HTML5 markup extention repo</option>
<a class="panel-block"><span class="panel-icon"><i class="fas fa-book" aria-hidden="true"></i></span>Search for "batteries for iphone 13"</a>