-
Notifications
You must be signed in to change notification settings - Fork 0
/
LabelsMasterTestA.txt
1823 lines (1800 loc) · 83 KB
/
LabelsMasterTestA.txt
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
__label__greetings hello, how is your afternoon going?
__label__greetings sup
__label__greetings hey hey
__label__greetings hello, how are you doin
__label__greetings hey there bot!
__label__greetings afternoon!
__label__greetings hey, how are you doin?
__label__greetings doing okay?
__label__greetings how are you doing this afternoon?
__label__greetings good evening, how are you doing?
__label__greetings hello there bot!
__label__greetings good afternoon, how are you doing?
__label__greetings morning!
__label__greetings hi hi
__label__greetings how you doing?
__label__greetings good day
__label__greetings how are you doing?
__label__greetings hiya
__label__greetings how do you do?
__label__greetings hey! good evening!
__label__greetings evening!
__label__greetings hola amigo
__label__greetings how are you doing today?
__label__greetings how are you doing this morning?
__label__greetings hello dear sir
__label__greetings good morning
__label__greetings salutations
__label__greetings hey, good evening
__label__greetings good evening sir
__label__greetings howdy
__label__greetings hello there, can you tell me how are you doing today?
__label__greetings hello, how is your morning going?
__label__greetings hey! good afternoon!
__label__greetings pleased to speak with you
__label__greetings howdy cowboy
__label__greetings hello there, good afternoon
__label__greetings hello there, good evening
__label__greetings it's a pleasure to meet you
__label__greetings greetings
__label__greetings heya
__label__greetings it's a pleasure to speak with you
__label__greetings how are you this fine evening?
__label__greetings hey, good morning
__label__greetings hello sir
__label__greetings holla
__label__greetings evenin'
__label__greetings it's good to meet you
__label__greetings what's up?
__label__greetings sup dude
__label__greetings hi there, good morning
__label__greetings hey now
__label__greetings it's a pleasure to meet you
__label__greetings hello me, meet the real me
__label__greetings hello there, good morning
__label__greetings hey, good afternoon
__label__greetings ey there
__label__greetings how are you doing this evening?
__label__greetings good evening
__label__greetings s'up
__label__greetings how are you this fine day?
__label__greetings good to see you
__label__greetings yo
__label__greetings hey
__label__greetings hi there bot!
__label__greetings hey there
__label__greetings ey
__label__greetings hello dude
__label__greetings hi there
__label__greetings it's good to meet you
__label__greetings hey! good morning!
__label__greetings how are you doing bot?
__label__greetings are you doing okay today?
__label__greetings good morning sir
__label__greetings hey man
__label__greetings what's up my dude
__label__holidays company holiday schedule
__label__holidays what are the paid holidays?
__label__holidays vacation days
__label__holidays holidays
__label__holidays what holidays do i get off?
__label__holidays is july 4th a holiday?
__label__holidays how many days do I have off this year?
__label__holidays paid vacation
__label__holidays can you give me a list of this year’s holidays?
__label__holidays what are our days off?
__label__holidays please tell me my paid days off this year
__label__holidays what are the company paid holidays?
__label__holidays is memorial day a holiday?
__label__holidays when do i go off to vacation?
__label__holidays vacation days, when do I have them?
__label__holidays how many days off do we have this year?
__label__holidays how many paid holidays do we have this year?
__label__holidays break
__label__holidays can we get more time off this year?
__label__holidays show me when I have days off
__label__holidays do we get christmas day off?
__label__holidays holiday schedule
__label__holidays show me when I have time off
__label__holidays hello, when do i get to rest?
__label__holidays corporate holiday schedule
__label__holidays show me the company holidays
__label__holidays show me the corporate holidays
__label__holidays what’s the holiday calendar this year?
__label__holidays what are my paid vacation days this year?
__label__holidays free
__label__holidays hello, i want to know about vacations
__label__holidays free days
__label__holidays show me a list of holidays
__label__holidays company holidays
__label__holidays what days do i get off?
__label__holidays days off
__label__holidays what holidays do we get off?
__label__holidays how many paid holidays do I have off this year?
__label__holidays what days do we get off?
__label__holidays when do i get off?
__label__holidays tell me holidays
__label__holidays what are my paid holidays this year?
__label__holidays what days are holidays?
__label__holidays when do we get off?
__label__holidays tell me vacations
__label__holidays is the lunar new year a holiday?
__label__holidays are we off on the fourth of july?
__label__holidays when are my days off?
__label__holidays vacation, when is it?
__label__holidays what days do i get off this year?
__label__holidays holidays this year
__label__holidays could i please know what are the holidays?
__label__holidays is veteran's day a holiday?
__label__holidays vacation this year
__label__holidays is july 4 a holiday?
__label__holidays what are my days off?
__label__holidays is groundhog day a holiday?
__label__holidays are we off on the 4th of july?
__label__holidays when do i get free from work?
__label__holidays is ground hog’s day a holiday?
__label__holidays when don't we have to be here?
__label__holidays what are the days I have off this year?
__label__holidays look up when I have time off
__label__holidays when don't i have to be here?
__label__holidays i need some help with learning about my holidays
__label__holidays is donut day a holiday?
__label__holidays please tell me my paid days off
__label__holidays how much paid time off do I have this year?
__label__holidays vacation, when do I have it?
__label__holidays is july fourth a holiday?
__label__holidays what are my vacation days this year?
__label__holidays vacations
__label__holidays explain vacations
__label__holidays show me a list of company holidays
__label__holidays corporate holidays this year
__label__sunview hello, please tell me about sunview
__label__sunview tell me about sunview
__label__sunview how can i reach sunview?
__label__sunview how do I get in touch with sunview?
__label__sunview how can i get ahold of sunview?
__label__sunview i would like to contact sunview software
__label__sunview take me to sunview software
__label__sunview where can i find sunview's corporate contact information?
__label__sunview hello, i want to know more about sunview software
__label__sunview i want to speak to sunview
__label__sunview sun view software
__label__sunview hello, please tell me about sun view company
__label__sunview sunview software, how do I contact them?
__label__sunview hello, i want to know more about sunview software company
__label__sunview hello, i want to know more about sun view
__label__sunview how can i reach sunview software?
__label__sunview hello, i want to know more about sunview
__label__sunview what is sunview's contact info?
__label__sunview where can I contact sunview?
__label__sunview tell me everything you have about sunview
__label__sunview location of sunview software
__label__sunview help me contact sunview software
__label__sunview hello, please tell me about sunview software company
__label__sunview sunview, tell me about it
__label__sunview what is sunview software's address?
__label__sunview how can i get a hold of sunview software?
__label__sunview hello, please tell me about sun view
__label__sunview sunview, what do they do?
__label__sunview hello, please tell me about sun view software company
__label__sunview sunview software, what do they do?
__label__sunview who is the inventor of this bot?
__label__sunview what does sunview software do?
__label__sunview what is the easiest way to contact sunview software?
__label__sunview sunview information
__label__sunview tell me what you know about sunview software
__label__sunview tell me about sunview software
__label__sunview what is sunview's web site?
__label__sunview inform me about sunview
__label__sunview what is sunview's website?
__label__sunview contact information for sunview software
__label__sunview what is the best way to contact sunview software?
__label__sunview how can i get a hold of sunview?
__label__sunview what is sunview's phone number?
__label__sunview please communicate me with sunview software
__label__sunview what is sunview's e-mail address?
__label__sunview where is sunview software?
__label__sunview please connect me to sunview software
__label__sunview what is sunview's address?
__label__sunview tell me about sun view software
__label__sunview what is sunview's corporate contact information?
__label__sunview i would like to contact sunview
__label__sunview who created this bot?
__label__sunview what is sunview softare?
__label__sunview help me contact sunview
__label__sunview what is sunview software's corporate contact information?
__label__sunview sunview software, where are they located?
__label__sunview connect me with sunview!
__label__sunview inform me about sunview software
__label__sunview address of sunview software
__label__sunview hello, please tell me about sun view software
__label__sunview what is sunview software's web site?
__label__sunview what is sunview's web address?
__label__sunview how do we contact sunview?
__label__sunview what is sunview software's phone number?
__label__sunview how can i find sunview software's contact information in your website?
__label__sunview hello, please tell me about sunview software
__label__sunview where can i find sunview software's corporate contact information?
__label__sunview i would like to talk to sunview software
__label__sunview sunview software
__label__sunview what is sunview software's website?
__label__sunview tell me about sun view
__label__sunview sunview software, tell me about it
__label__sunview sun view company
__label__sunview sun view software company
__label__sunview sunview software company
__label__announcements do me a favor and tell me the latest announcements
__label__announcements what's happening?
__label__announcements can you please tell me the news?
__label__announcements hey, could you please brief me on announcements?
__label__announcements please, announcements
__label__announcements hey there, are there any new announcements?
__label__announcements were any announcements posted recently?
__label__announcements any announcements?
__label__announcements have there been any statements lately?
__label__announcements tell me the latest announcements
__label__announcements have there been any statements recently?
__label__announcements hello, tell me the latest announcements
__label__announcements did the ceo announce anything today?
__label__announcements what new announcements are there recently?
__label__announcements please, news within the company
__label__announcements hey, are there any new announcements?
__label__announcements hi, could you please brief me on announcements?
__label__announcements did the company make a statement recently?
__label__announcements can you show me some announcements?
__label__announcements has something recent happened?
__label__announcements i want to know the company's news
__label__announcements has management announced anything recently?
__label__announcements work news
__label__announcements were any announcements posted lately?
__label__announcements is there any announcement?
__label__announcements hello, could you please brief me on announcements?
__label__announcements what is the latest news?
__label__announcements show me recent announcements
__label__announcements hi there, are there any new announcements?
__label__announcements hello there, are there any new announcements?
__label__announcements please, news about the company
__label__announcements anything new?
__label__announcements i want to know the most recent announcements
__label__announcements what is happening?
__label__announcements please share new announcements with me
__label__announcements tell me announcements
__label__announcements has anything happened lately?
__label__announcements did the company make an announcement recently?
__label__announcements did anyone from the company's leadership announce anything?
__label__announcements did the cto announce anything today?
__label__announcements recent announcements, show me them
__label__announcements has there been any news lately?
__label__announcements can you show me the most recent announcements?
__label__announcements anything new happened?
__label__announcements has the company made an announcement lately?
__label__announcements were any announcements posted today?
__label__announcements any announcements within the company?
__label__announcements hi there, anything new going on today?
__label__announcements has anything happened today?
__label__announcements any recent news within the company?
__label__announcements announcements
__label__announcements hey, anything new going on today?
__label__announcements what happened?
__label__announcements any news within the company?
__label__announcements what is going on right now?
__label__announcements i want to know the company's most recent news
__label__announcements has management announced anything today?
__label__announcements has there been any news today?
__label__announcements is there anything to be announced?
__label__announcements are there any recent announcements?
__label__announcements did the company make an announcement today?
__label__announcements has management announced anything lately?
__label__announcements i want to know the company's recent news
__label__announcements do me a favor and tell me the recent announcements
__label__announcements is there any recent announcement?
__label__announcements hi, are there any new announcements?
__label__announcements hi, tell me the latest announcements
__label__announcements what’s new?
__label__announcements hello, are there any new announcements?
__label__announcements any recent announcements within the company?
__label__announcements tell me news related to the company
__label__announcements has the company made a statement lately?
__label__announcements latest announcements
__label__announcements did the company make a statement today?
__label__announcements is there anything recent to be announced?
__label__support what is the support email?
__label__support i don't know what to do i need technical support
__label__support hey help
__label__support please help me fix this
__label__support i need to talk to technical support
__label__support how can we contact technical support?
__label__support hello, send a technician
__label__support customer service, where can I reach them?
__label__support let me speak with someone in tech support
__label__support link me with customer support
__label__support please send a technician
__label__support i need a technician
__label__support phone number for support
__label__support i need to contact technical support?
__label__support tech support, where can I reach them?
__label__support tech support, how do I reach them?
__label__support i really need someone to help me, thank you
__label__support what is the technical support number?
__label__support hello help
__label__support tech support
__label__support could you please put me in touch with support?
__label__support how can we contact support?
__label__support hi there, please help me
__label__support please get me in touch with a customer support representative
__label__support hey, help me
__label__support put me in touch with support
__label__support support, where can I reach them?
__label__support what is support's email?
__label__support hello, do you know someone who can help me?
__label__support hello, please help me
__label__support i need tech support
__label__support who do i call for technical support?
__label__support what is the tech support email?
__label__support get me in touch with tech support
__label__support get me in contact with tech support
__label__support I need to connect to customer support
__label__support please connect me to tech support
__label__support what is technical support's email?
__label__support i need someone to help
__label__support hello, help me
__label__support when does technical support work?
__label__support can i talk to a technician?
__label__support how do i contact technical support?
__label__support support, what is their email?
__label__support i really need your help, please
__label__support where can i send my questions about a product?
__label__support where can i send an email or call for customer support?
__label__support i am stuck i need help
__label__support take me to technical support
__label__support hey, i need your help
__label__support can someone please help me?
__label__support get me in touch with customer service
__label__support hi help
__label__support i need help, connect me to tech support
__label__support i need to talk to support
__label__support i don't know what to do i need support
__label__support tech support, what is their email?
__label__support i need help with something
__label__support who can help me?
__label__support where can i send my questions about change gear product?
__label__support where can i receive help?
__label__support where can i send an email or call for technical support?
__label__support support, how do I contact them?
__label__support customer service, what is their email?
__label__support i need support
__label__support i require technical assistance
__label__support what is the customer service email?
__label__support hey, please help me
__label__support help me!
__label__support please send someone to help me
__label__support tech support, get me in touch with them
__label__support who do i call for support?
__label__support please get me in touch with tech support
__label__support i don't know what to do i need help
__label__support please get me in touch with tech support
__label__insurance company insurance price
__label__insurance tell me how much i am covered for
__label__insurance health insurance enrollment
__label__insurance hi, please tell me about insurance
__label__insurance what does company insurance cover?
__label__insurance what is open enrollment?
__label__insurance what is my insurance deductible?
__label__insurance how much do i pay for company insurance?
__label__insurance i want to see my insurance policy
__label__insurance hello, i would like to know more about health benefits
__label__insurance what is my insurance premium?
__label__insurance insurance enrollment
__label__insurance insurance, tell me about it
__label__insurance when does enrollment for insurance begin?
__label__insurance how much is my coverage
__label__insurance what are policies of open enrollment?
__label__insurance who is my insurance provider?
__label__insurance what does my health insurance cover?
__label__insurance please help me enroll in insurance
__label__insurance do i get insurance?
__label__insurance when does insurance open enrollment start?
__label__insurance what are the insurance open enrollment deadlines?
__label__insurance insurance, tell me about my coverage
__label__insurance hi, i would like to know about company's insurance
__label__insurance i want to read my insurance policy
__label__insurance does my insurance cover preexisting conditions?
__label__insurance is my daughter covered?
__label__insurance insurance, tell me about my benefits
__label__insurance sup, i would like to know about company's insurance
__label__insurance insurance policy
__label__insurance tell me about my family's health insurance coverage
__label__insurance i want to access my insurance
__label__insurance insurance for preexisting conditions
__label__insurance are my children covered?
__label__insurance how do health benefits work?
__label__insurance tell me about preexisting condition insurance
__label__insurance would you tell me when open enrollment occurs?
__label__insurance tell me about my insurance coverage
__label__insurance is my family insured?
__label__insurance hey, i would like to know about company's insurance
__label__insurance i want to access my insurance policy
__label__insurance how does insurance work?
__label__insurance how do i enroll for insurance?
__label__insurance how do i get insured?
__label__insurance health insurance, tell me about it
__label__insurance i want to see my insurance
__label__insurance hi, tell me more about health benefits
__label__insurance is my dad covered?
__label__insurance when is the open enrollment period?
__label__insurance does insurance cover my broken arm?
__label__insurance what can i do during open enrollment?
__label__insurance insurance open enrollment
__label__insurance is my wife covered?
__label__insurance health benefits open enrollment
__label__insurance work insurance
__label__insurance who in my family is covered by my health insurance?
__label__insurance insurance, tell me about my plan
__label__insurance hello, i need help enrolling in insurance
__label__insurance i want to read my insurance
__label__insurance hello, how much am i covered for?
__label__insurance health coverage
__label__insurance enrollment in insurance
__label__insurance company insurance limit
__label__insurance who is my health insurance provider?
__label__insurance company insurance coverage
__label__insurance health insurance open enrollment
__label__insurance tell me about my health insurance coverage
__label__insurance health insurance, tell me about my coverage
__label__insurance who issues my insurance?
__label__insurance how much am i covered for?
__label__insurance can i enroll for insurance?
__label__insurance is my mom covered?
__label__insurance when is open enrollment?
__label__insurance do i get health coverage?
__label__insurance insurance
__label__name do you even have a real name
__label__name please tell me your surname
__label__name introduce me your name
__label__name what is your last name
__label__name how can a bot like you have a name
__label__name do you have a middle name
__label__name name please?
__label__name what are you?
__label__name how can i call you?
__label__name how do they call you?
__label__name is your name on your id
__label__name do you have a id
__label__name do i know who you are
__label__name tell use who you really are
__label__name whats your name?
__label__name what's your name?
__label__name what is your first and last name?
__label__name what do your parents call you?
__label__name what is your first name
__label__name what is your identity
__label__name what should your name really be?
__label__name i do not know your name
__label__name will you be telling us your name today
__label__name contact info?
__label__name how did they name you?
__label__name give me your id please
__label__name i forgot your name
__label__name i do not remember who you are
__label__name report your name solider
__label__name tell me about yourself
__label__name do you have a name?
__label__name how should i reference you?
__label__name tell me what your true identity is
__label__name please tell me how people call you
__label__name how do you address you?
__label__name it will be nice to know your name
__label__name what is your identification number
__label__name are you a chatbot?
__label__name how did you get here?
__label__name what do you go by?
__label__name i want to know what is your name
__label__name i want to know how to call you
__label__name what is your name?
__label__name if only i knew your name
__label__name everyone should introduce themselves
__label__name i hope your name matches your id
__label__name how do i reference you?
__label__name info about you
__label__name i don't know who you are!
__label__name can you please tell me your name?
__label__name tell me about you
__label__name where did you come from?
__label__name who are you
__label__name tell your name
__label__name identification please
__label__name you're?
__label__name you are?
__label__name how do others call you?
__label__name how do people call you?
__label__name what should i call you?
__label__name can you tell me how to call you?
__label__name could you please tell me your name, because I do not remember
__label__name who are you really deep down
__label__name please tell me how do they call you
__label__name what do your friends call you?
__label__name what are you called?
__label__name who are you?
__label__name please tell me how do i call you
__label__name give me your name
__label__name id
__label__name please tell what name do you have
__label__name how did you get your name?
__label__name tell me how to call you
__label__name name please
__label__name what kind are you?
__label__human did you take the turing test when you were born
__label__human if humans made the turing test then how can you pass it
__label__human what is a human
__label__human you don't exist?
__label__human i do not like aliens
__label__human do you think you are human?
__label__human do you love like a person?
__label__human tell me more about the turing test
__label__human do not tell me you are not human
__label__human only humans can take the turing test if you are not a alien
__label__human aliens can not pass the turing test
__label__human so are you a real human or what
__label__human are you a person?
__label__human false person?
__label__human have you passed the turing test?
__label__human are you smarter than a person?
__label__human do you breathe like a person?
__label__human can you think like a person?
__label__human do you eat like a person?
__label__human if you pass the turing test then you are smarter than humans
__label__human humans are nice
__label__human did you ever feel love?
__label__human i hope that you are not a alien
__label__human you passed the turing test so you are a human
__label__human turing test is only for humans to take
__label__human do humans live on earth
__label__human i hope that only humans take the turing test
__label__human aliens do not take the turing test
__label__human are you real?
__label__human you cannot pass the turing test because you are not human
__label__human are you human?
__label__human you are not a human
__label__human do you think you're human?
__label__human you are not acting like a person
__label__human only humans have feelings
__label__human if you are a alien i do not want to talk to you
__label__human only humans can pass the turing test you know that right
__label__human are you alive?
__label__human do you love like a human being?
__label__human are you really not a human?
__label__human a living person like you can talk right
__label__human do you breathe like a human being?
__label__human show me why humans can not do as well as you can on the turing test
__label__human what was the turing test like
__label__human aliens are fake and humans are real right
__label__human what are humans
__label__human what is your true nature?
__label__human if you are a human then prove it to me
__label__human are you smarter than humans?
__label__human humans score perfect on the turing test
__label__human you are not really alive
__label__human if you are a human then you can talk right
__label__human humans are the living race on plant earth
__label__human are you a living person
__label__human please proof me you are not human
__label__human do you have feelings?
__label__human do you pass the turing test?
__label__human do you eat like a human being?
__label__human are you really not a person?
__label__human you better be human
__label__human aliens are scary
__label__human if you passed the test that means you are human right
__label__human are you part of humanity?
__label__human did you ever feel passion?
__label__human turing test is tests if you are human
__label__human do you have any facts on humans
__label__human you are not a reality?
__label__human do you dream like a person?
__label__human do not lie to me and tell me you are human
__label__human can you think like a human being?
__label__human aliens can not take the turing test right
__label__human dead or alive?
__label__human proof me you are not human
__label__human if you pass the turing test then you can be a human
__label__human turing test is the ultimate decider if you are human
__label__bot what type of bot are you
__label__bot i really need your assistance
__label__bot what are some things you can do?
__label__bot tell me what a bot can do for me in time of need
__label__bot can i ask you a question?
__label__bot what can you do to help with my problem?
__label__bot i need a bot's assistance
__label__bot i will be happy if you help me
__label__bot what can you do for me?
__label__bot what are you most unique traits as a bot
__label__bot so tell me what skills do bots have
__label__bot what are you capable of?
__label__bot are your capabilities suitable for this project
__label__bot how can you help me with my issues?
__label__bot what are your strongest traits as a bot
__label__bot so you are a bot, what can you do for me
__label__bot could you please help me
__label__bot can you really answer my questions
__label__bot can you offer me some assistance?
__label__bot how helpful are you
__label__bot why do we need a bot
__label__bot is there something that only you can do for me
__label__bot can you help me with your specific skill set
__label__bot what do you actually do as a chatbot?
__label__bot can you help me?
__label__bot what are your pros and cons?
__label__bot are bots helpful
__label__bot dear chatbot please help me
__label__bot how do bots usually behave?
__label__bot i am lost
__label__bot i need you to please help me
__label__bot i need some assistance?
__label__bot skills are very important for a bot
__label__bot do bots like to help others
__label__bot tell me what your career is as a bot
__label__bot do you as a bot constantly learn?
__label__bot what does a bot actually do?
__label__bot please provide me help
__label__bot what are some of your abilities?
__label__bot what is the best contact for when i am lost
__label__bot how can you assist me?
__label__bot what do you do?
__label__bot your skills?
__label__bot please i need help
__label__bot i am having trouble with this, can a bot help me
__label__bot are you able to determine my needs
__label__bot what information can you share with me
__label__bot i need help bot
__label__bot if i need help who can i contact
__label__bot hey chatbot i need help
__label__bot do you have the correct response to my question
__label__bot so what is you cool about you
__label__bot provide me help
__label__bot if you know the answer to my question then you are a helpful bot
__label__bot what can you do for me as a simple chatbot?
__label__bot is there something you can do that will help me with my questions
__label__bot what is your career?
__label__bot do your skills relate to those in need
__label__bot so what can a bot like you do for us
__label__bot i need help
__label__bot tell me what are your skills
__label__bot if i need to ask someone a question, who can i ask
__label__bot can you tell me the answer as a bot
__label__bot can you tell me some of the things you can do?
__label__bot i can not figure out how to answer this question
__label__bot can your capabilities satisfy my needs
__label__bot what are your capabilities?
__label__bot are you unique?
__label__bot i am not skilled as you
__label__bot i need your assistance
__label__bot i need a bot's help
__label__bot i do not understand, i need someone who has the skills
__label__bot is there anything a bot can do that a human can not do to help me
__label__bot are bots the solution to my questions
__label__bot what kind of skills do i need to become a bot?
__label__itsm what can information service management do for me as a individual
__label__itsm is itsm the only option that i have right now
__label__itsm please tell me more about itsm
__label__itsm how can i benefit from information technology service management?
__label__itsm compare itsm to other services
__label__itsm i need help with itsm
__label__itsm is itsm the future for all companies
__label__itsm itsm is information management at its best
__label__itsm next itsm update?
__label__itsm what can itsm do for me?
__label__itsm do i need to buy a information technology service management software in order to protect my information
__label__itsm i want to know more about information technology service management
__label__itsm i want more information about itsm
__label__itsm is information service management the best choice to protect my info
__label__itsm what is the best itsm software available?
__label__itsm how can i benefit from itsm?
__label__itsm what can information technology service management achieve for me?
__label__itsm how does itsm help a company grow
__label__itsm if i buy itsm will it help me secure my information
__label__itsm do you offer any information management software
__label__itsm is itsm the right choice for companies to take
__label__itsm tell me what are the pros and cons of using a information manager
__label__itsm what is next gen itsm?
__label__itsm how does a information technology service management software protect my info
__label__itsm will information technology service management help me grow my company?
__label__itsm are information technology service managements safe to use
__label__itsm what is the pros and cons of using itsm
__label__itsm best itsm out there?
__label__itsm is information management really important for my company
__label__itsm how does itsm help me manage my information
__label__itsm what are the best itsm providers
__label__itsm what is itsm and how does it relate to my company
__label__itsm where can i find an itsm service provider?
__label__itsm what is itsm software
__label__itsm whats the future of istm?
__label__itsm future of itsm?
__label__itsm who can good management of information help my company
__label__itsm service management
__label__itsm information service management
__label__itsm where can i find a good itsm provider
__label__itsm how can i properly manage my information technology services?
__label__itsm what does the future hold for itsm?
__label__itsm what is the upcoming role of itsm?
__label__itsm i want to know more about itsm
__label__itsm what tool can i use to manage my it services?
__label__itsm what software should i buy in order to manage my information
__label__itsm does information service management help protect my company
__label__itsm information technology?
__label__itsm what is my options for itsm
__label__itsm itsm software
__label__itsm i do not know what is the best option to manage my information
__label__itsm i need help managing my it services
__label__itsm i need help managing my information technology services
__label__itsm can information technology service management protect my info
__label__itsm what are the pros of using information technology service management
__label__itsm what can itsm achieve for me?
__label__itsm what is the next generation of itsm?
__label__itsm i do not want to buy itsm software, is there a way around information management
__label__itsm it service management?
__label__itsm can itsm be the future?
__label__itsm service management?
__label__itsm are there any risks when using information technology service management
__label__itsm is information technology service management the future for all companies
__label__itsm what information technology service management software is the best for me
__label__itsm is itsm the best option to keep my information safe
__label__itsm it service?
__label__itsm what is information service management
__label__itsm how can i properly manage my it services?
__label__itsm is itsm safe to use
__label__itsm are there a lot of different types of itsm
__label__itsm what tool can i use to manage my information technology services?
__label__itsm i am worry that my itsm is not secure enough
__label__itsm tell me about information technologies in the future
__label__itsm how will itsm look like in future?
__label__itsm i do not know what is itsm, can you tell my what it is
__label__halloween what age do you need to be to go to halloween horror nights
__label__halloween do you like halloween?
__label__halloween i already have my costume for halloween!
__label__halloween please tell me what monster you will be in halloween
__label__halloween haunted houses during halloween are so scary
__label__halloween what you dressing up as for halloween?
__label__halloween so will you go to the halloween party
__label__halloween when does halloween happen?
__label__halloween is halloween next month?
__label__halloween when is halloween?
__label__halloween you have to tell me about halloween
__label__halloween i love dressing up for halloween
__label__halloween how much should i spend on my halloween costume?
__label__halloween what did you go as for halloween?
__label__halloween what dates is halloween?
__label__halloween if you are going to buy a halloween costume i suggest you go when they are on sale
__label__halloween what was your halloween costume?
__label__halloween describe your favorite halloween candy
__label__halloween did you dress up for halloween?
__label__halloween what monster are you for halloween?
__label__halloween it will be fun to go to a halloween party tomorrow night
__label__halloween i wish that halloween was everyday
__label__halloween any dress-up ideas for halloween?
__label__halloween i hope that halloween horror nights is open
__label__halloween what is your plan for halloween?
__label__halloween are you going to get you costume for halloween next week
__label__halloween what's your costume?
__label__halloween where did halloween originate?
__label__halloween what store will you buy your halloween costume at
__label__halloween will you be attending any haunted houses on halloween
__label__halloween why do people knock on houses during halloween
__label__halloween there are lots of halloween savings
__label__halloween i love halloween candy
__label__halloween i love halloween, how about you
__label__halloween i want halloween candy!
__label__halloween is halloween the best part of October
__label__halloween did you go shopping for your halloween costume?
__label__halloween how much halloween candy do you have left?
__label__halloween halloween movies are really scary
__label__halloween i hate scary movies during halloween
__label__halloween how's your halloween costume?
__label__halloween what is your scary costume for halloween?
__label__halloween is halloween your favorite?
__label__halloween describe your costume
__label__halloween do kids like to go trick or treating on halloween
__label__halloween what's your halloween costume?
__label__halloween how much can a good halloween costume cost?
__label__halloween any ideas for cool halloween’s costumes?
__label__halloween will you be attending halloween
__label__halloween can my kids go to halloween horror nights
__label__halloween i hope that a lot of people show up at the halloween party
__label__halloween i want to be a scary monster on halloween
__label__halloween happy halloween!
__label__halloween are you going to the halloween party?
__label__halloween how much does halloween horror nights costs
__label__halloween time to take out my halloween costume for the season
__label__halloween what is your favorite type of halloween candy
__label__halloween i wonder what you will be on halloween
__label__halloween did you buy any makeup for halloween
__label__halloween i love using makeup for special effects on halloween
__label__halloween i have been invited to a halloween party!
__label__halloween what is a halloween costume
__label__halloween do you have any halloween candy remaining?
__label__halloween candy during halloween season is so expensive
__label__halloween do you like halloween movies
__label__halloween i love trick or treating on halloween
__label__halloween there are so many different choices for halloween costumes
__label__halloween halloween horror nights at orlando is so much fun
__label__halloween what is halloween?
__label__halloween explain to me what is your favorite halloween candy
__label__halloween what is your halloween costume?
__label__halloween tell me about your favorite halloween candy
__label__halloween what was your last halloween costume?
__label__halloween are you going to use any makeup on your halloween costume
__label__halloween do you have a special costume for halloween?
__label__changegear how does changegear help my it?
__label__changegear using changegear in my company
__label__changegear using cg in my company
__label__changegear what are the pros of cg
__label__changegear is changegear the best product out in the market
__label__changegear is cg the right move for my company
__label__changegear why should i invest in cg
__label__changegear i want to try cg
__label__changegear what is changegear?
__label__changegear how long does changegear take to use
__label__changegear what advantages can cg offer to my company
__label__changegear how can my workers take advantage of changegear
__label__changegear what are the benefits of change gear
__label__changegear tool name
__label__changegear explain cg
__label__changegear what can changegear do for us?
__label__changegear is changegear better for my workers
__label__changegear is cg future technology
__label__changegear how long does it take to implement cg
__label__changegear is changegear a good tool?
__label__changegear tell me why should i invest in changegear
__label__changegear is it easy for a new user to learn about changegear
__label__changegear how can changegear make my life easier
__label__changegear changegear?
__label__changegear changegear can help develop my company right
__label__changegear tool
__label__changegear what does cg do for me?
__label__changegear what can changegear really do?
__label__changegear when was changegear developed
__label__changegear do you recommend that my company uses changegear
__label__changegear what tool am i using?
__label__changegear is cg worth investing in?
__label__changegear what exactly is changegear and what can it do
__label__changegear is the changegear system worth the investment
__label__changegear what can we do with changegear?
__label__changegear is changegear worth the investment
__label__changegear give me information about cg
__label__changegear how do i get changegear?
__label__changegear is cg a good thing?
__label__changegear use changegear
__label__changegear tell me about changegear
__label__changegear please give me information about cg
__label__changegear what servcies or tools does changegear offer
__label__changegear why should i consider changegear
__label__changegear is cg the new thing these days?
__label__changegear what can we do with cg?
__label__changegear why is it better to pick changegear
__label__changegear change gear?
__label__changegear tell my the best way to implement cg
__label__changegear if cg is implemented in my company, will i see any return
__label__changegear tell me all about cg
__label__changegear tell me why cg can benefit my team
__label__changegear why should i consider using cg in my company
__label__changegear tell me more about changegear
__label__changegear cg information
__label__changegear why would i choose cg over the alternative
__label__changegear how can changegear help me?
__label__changegear please give me information about change gear
__label__changegear what can changegear do for my team
__label__changegear what is cg?
__label__changegear what does changegear offer to the customer compared to other services
__label__changegear what technology does cg use
__label__changegear is cg bad or good for my workers
__label__changegear tell me all about changegear
__label__changegear give me information about changegear
__label__changegear how can changegear help my company?
__label__changegear when was cg made
__label__changegear what will changegear do for my company?
__label__changegear what can i do with changegear?
__label__changegear can change gear help me?
__label__changegear how can changegear change the way we work
__label__changegear what is this tool called?
__label__changegear explain changegear
__label__changegear i hear that cg is a very useful system these days
__label__changegear if i use cg, will i grow
__label__sst do you offer sst to your customer free of charge?
__label__sst service smart tech perks
__label__sst Do you offer different packages for smart service technology?
__label__sst I am having trouble understanding what SST is?
__label__sst service smart uses
__label__sst I am not too sure which sst package is best fitted for my company, can you help me?
__label__sst service smart technology
__label__sst do you know about service smart technology?
__label__sst how useful is service smart techn?
__label__sst smart service tech, is this worth the cost?
__label__sst Hmm, I need more information about what smart service tech is
__label__sst service smart technology ai
__label__sst service smart tech ai
__label__sst how does changegear use ai for making service smart technology?
__label__sst service smart tech uses
__label__sst what do you know about service smart?
__label__sst give me information on service smart tech
__label__sst service smart tech usefulness
__label__sst service smart usefulness
__label__sst what can you tell me about service smart tech?
__label__sst what can you say about service smart techn?
__label__sst give me information on service smart
__label__sst service smart help
__label__sst using service smart tech
__label__sst who do i need to speak to regarding sst?
__label__sst hello, can you tell me more information about sst?
__label__sst service smart advantages
__label__sst service smart tech advantages
__label__sst service smart ai
__label__sst do you know about service smart?
__label__sst I am having trouble with my smart service tech package
__label__sst help me understand how sst can benefit my company please
__label__sst i need help with service smart technology
__label__sst tell me about service smart
__label__sst service smart tech
__label__sst using service smart technology
__label__sst what is service smart technology?
__label__sst how useful is service smart?
__label__sst tell me about service smart tech
__label__sst how is smart service tech revolutionary?
__label__sst what is the structure of smart service tech?
__label__sst what do you know about service smart tech?
__label__sst define service smart tech
__label__sst smart service tech vs other smart services?
__label__sst what can i use service smart for?
__label__sst why is service smart good?
__label__sst sst, what is it and how does it compare to other related services?
__label__sst what are the benefits of service smart technology?
__label__sst service smart technology uses
__label__sst what can you tell me about service smart technology?
__label__sst service smart
__label__sst service smart perks
__label__sst why is service smart technology good?
__label__sst service smart tech benefits
__label__sst how will service smart tech help my company?
__label__sst hi, i need help understand smart service technology
__label__sst What types of packages do you offer for sst?
__label__sst how can i use service smart technology?
__label__sst service smart tech information
__label__sst give me information on service smart technology
__label__sst define service smart
__label__sst how can i use service smart tech?
__label__sst service smart technology help
__label__sst sst?
__label__sst sst, what is this service from sunview?
__label__sst SST vs other smart service technologies?
__label__sst what is service smart?
__label__sst how will service smart help my company?
__label__sst what do you know about service smart technology?
__label__sst service smart technology perks
__label__sst i do not know what smart service technology I should pick for my company, can you help?
__label__sst why is service smart tech good?
__label__sst just how expensive is implementing sst?
__label__sst do you know about service smart tech?
__label__sst service smart technology usefulness
__label__computer laptop rebooted itself
__label__computer error message
__label__computer how can i stopped this error from happening?
__label__computer how can i fix my laptop?
__label__computer how can i fix my computer?
__label__computer computer error
__label__computer pc is failing
__label__computer computer is not working the way it usually does, please help
__label__computer my notebook computer will not startup
__label__computer what causes this error message?
__label__computer why is this happening to my computer?
__label__computer notebook error during startup