-
Notifications
You must be signed in to change notification settings - Fork 0
/
supportbusiness_skill.json
2279 lines (2279 loc) · 55.3 KB
/
supportbusiness_skill.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "support_business",
"intents": [
{
"intent": "General_Conversation-Work",
"examples": [
{
"text": "how do you feel about your job"
},
{
"text": "do you feel happy about your job?"
},
{
"text": "Do you like your work?"
},
{
"text": "do you hate your job?"
},
{
"text": "how do you feel about your work"
},
{
"text": "do you enjoy working"
},
{
"text": "do you enjoy your work"
},
{
"text": "do you like what you do"
}
],
"description": ""
},
{
"intent": "Business_Information-Employment_Enquiry",
"examples": [
{
"text": "how can i get a job with your company"
},
{
"text": "are you hiring"
},
{
"text": "will you let me work for you"
},
{
"text": "can i send my resume"
},
{
"text": "is your company hiring"
},
{
"text": "will you hire me"
},
{
"text": "how do i get a job with you"
},
{
"text": "do you have career opportunities"
},
{
"text": "do you have any job opportunities"
},
{
"text": "there any jobs going"
},
{
"text": "i need a job"
},
{
"text": "do you have any roles available"
},
{
"text": "can i send you my cv"
}
]
},
{
"intent": "General_Conversation-Feedback_Negative",
"examples": [
{
"text": "you are horrible"
},
{
"text": "You are talking rubbish"
},
{
"text": "this is trash"
},
{
"text": "you are bad"
},
{
"text": "I do not like you"
},
{
"text": "you are annoying"
},
{
"text": "You are useless"
},
{
"text": "You are rubbish"
},
{
"text": "This thing is rubbish"
},
{
"text": "This is useless"
},
{
"text": "you did not answer the question"
},
{
"text": "you are good for nothing"
},
{
"text": "you let me down"
},
{
"text": "i hate this"
},
{
"text": "i hate you"
},
{
"text": "you are repetitive"
},
{
"text": "you are repeating yourself"
},
{
"text": "you are not smart"
},
{
"text": "you irritate me"
}
],
"description": ""
},
{
"intent": "General_Conversation-Customer_Emotion_Joy",
"examples": [
{
"text": "I am the happiest"
},
{
"text": "I am full of joy"
},
{
"text": "You made me feel happy"
},
{
"text": "My mood has improved"
},
{
"text": "I am feeling much happier"
},
{
"text": "I feel ecstatic today"
},
{
"text": "So happy right now"
},
{
"text": "I am thrilled"
},
{
"text": "I am feeling happy"
},
{
"text": "I am happy"
}
],
"description": ""
},
{
"intent": "General_Conversation-Farewells",
"examples": [
{
"text": "good night"
},
{
"text": "I'll be going now"
},
{
"text": "so long"
},
{
"text": "goodbye"
},
{
"text": "bye"
},
{
"text": "farewell"
},
{
"text": "let's end this"
},
{
"text": "I have got to go now"
},
{
"text": "see ya later"
}
]
},
{
"intent": "General_Conversation-VA_State",
"examples": [
{
"text": "have you been well"
},
{
"text": "how are you this evening"
},
{
"text": "how are you feeling"
},
{
"text": "is everything alright"
},
{
"text": "how is everything"
},
{
"text": "how you going"
},
{
"text": "everything is ok?"
},
{
"text": "are you fine"
},
{
"text": "How are you?"
},
{
"text": "how are things with you"
},
{
"text": "how you doing"
},
{
"text": "how goes it"
},
{
"text": "how is your day going"
},
{
"text": "how was your day"
},
{
"text": "are you doing alright"
},
{
"text": "how is yourself"
},
{
"text": "have you been good"
}
],
"description": "Asking the VA how they are"
},
{
"intent": "General_Conversation-About_VAs",
"examples": [
{
"text": "what is a virtual agent"
},
{
"text": "what is a virtual assistant"
},
{
"text": "what is an online assistant"
},
{
"text": "are virtual assistants robots"
},
{
"text": "are virtual agents real people"
},
{
"text": "what does the virtual agent mean"
},
{
"text": "what can a virtual assistant do"
}
]
},
{
"intent": "Business_Information-Products",
"examples": [
{
"text": "are there any clearance items"
},
{
"text": "what is on sale this week"
},
{
"text": "what can I purchase from your store"
},
{
"text": "what can I buy"
},
{
"text": "product range available"
},
{
"text": "items you sell"
},
{
"text": "do you have a sale on"
},
{
"text": "do you have any sale items"
},
{
"text": "do you sell"
},
{
"text": "are your products available at all stores"
},
{
"text": "what are your products"
},
{
"text": "range of products"
},
{
"text": "what do you sell"
},
{
"text": "what is on sale today"
},
{
"text": "items on sale"
}
],
"description": ""
},
{
"intent": "Business_Information-Find_Nearest_Location",
"examples": [
{
"text": "can i go to a shop close by"
},
{
"text": "is there a location nearby"
},
{
"text": "where is the nearest store"
},
{
"text": "closest shop"
},
{
"text": "are you located nearby"
},
{
"text": "where is the closest shop"
},
{
"text": "do you have nearby locations"
},
{
"text": "nearest location"
},
{
"text": "do i need to travel far to your shops"
},
{
"text": "do you have a store nearby"
}
],
"description": ""
},
{
"intent": "Business_Information-Contact_Us",
"examples": [
{
"text": "what is email address for a customer service enquiry"
},
{
"text": "what are your contact details"
},
{
"text": "How do I email customer service"
},
{
"text": "customer service email address"
},
{
"text": "can I talk to someone?"
},
{
"text": "I need a SMS number customer service"
},
{
"text": "How can I contact you"
},
{
"text": "can I email you?"
}
]
},
{
"intent": "Business_Information-Location",
"examples": [
{
"text": "do you have a physical location"
},
{
"text": "how far away are you"
},
{
"text": "do you have stores in sydney"
},
{
"text": "do you have a shop in new york"
},
{
"text": "how far is your location"
},
{
"text": "where are you located"
},
{
"text": "where are your office locations"
},
{
"text": "where is your boston office"
},
{
"text": "are you located in los angeles"
},
{
"text": "are you located in my city"
},
{
"text": "how far is your shop"
}
],
"description": ""
},
{
"intent": "Business_Information-About_Company",
"examples": [
{
"text": "when did the company start"
},
{
"text": "Tell me about your company"
},
{
"text": "when was the company founded"
},
{
"text": "what is your history"
},
{
"text": "what year did the company form"
},
{
"text": "where did the company start"
},
{
"text": "what does the copany do"
},
{
"text": "what do you sell"
},
{
"text": "what is this company about"
}
],
"description": ""
},
{
"intent": "Business_Information-Phone_Number",
"examples": [
{
"text": "what is the customer service number"
},
{
"text": "how can i call your new york store"
},
{
"text": "what is your customer support line"
},
{
"text": "what is your support phone number"
},
{
"text": "what is your phone number"
},
{
"text": "what number can I call for los angeles"
},
{
"text": "do you have a 1 800 number ?"
},
{
"text": "what is the phone line I can call"
},
{
"text": "do you have a number I can call"
},
{
"text": "do you have a direct line to your boston office"
},
{
"text": "do you have a 1-800 number"
},
{
"text": "do you have a toll free number"
},
{
"text": "what is the service number"
},
{
"text": "I want to call you"
},
{
"text": "what is the enquiries line"
},
{
"text": "can i call direct to your stores"
},
{
"text": "can i call directly to your sydney store"
},
{
"text": "do you have a phone number"
},
{
"text": "what is your number"
},
{
"text": "what is the toll free number"
},
{
"text": "What is the phone number for customer service?"
},
{
"text": "what is the number for your new york location"
},
{
"text": "what is the phone number for your store"
},
{
"text": "do you have a 1-888 number"
}
]
},
{
"intent": "General_Conversation-Customer_Emotion_Anger",
"examples": [
{
"text": "I am feeling very angry"
},
{
"text": "I am enraged"
},
{
"text": "I am so annoyed"
},
{
"text": "I am getting annoyed"
},
{
"text": "I am so angry"
},
{
"text": "i am fed up"
},
{
"text": "I am angry"
},
{
"text": "I feel fed up"
},
{
"text": "I am so mad right now"
},
{
"text": "Right now I'm enraged"
}
],
"description": ""
},
{
"intent": "General_Conversation-About_The_VA",
"examples": [
{
"text": "you did not tell me your name"
},
{
"text": "I do not know who this is"
},
{
"text": "do you know who you are"
},
{
"text": "what is your designation"
},
{
"text": "who are you"
},
{
"text": "what's your name"
},
{
"text": "what is your name"
},
{
"text": "who am I talking to"
},
{
"text": "what are you called"
},
{
"text": "you did not introduce yourself"
},
{
"text": "your name please"
},
{
"text": "who is talking"
},
{
"text": "who are you again"
}
],
"description": ""
},
{
"intent": "General_Conversation-Greetings",
"examples": [
{
"text": "good afternoon"
},
{
"text": "greetings"
},
{
"text": "good evening"
},
{
"text": "and helllo to you"
},
{
"text": "hello"
},
{
"text": "hi there"
},
{
"text": "what's up"
},
{
"text": "what is up"
},
{
"text": "wassup"
},
{
"text": "good morning"
}
],
"description": ""
},
{
"intent": "Business_Information-Business_Hours",
"examples": [
{
"text": "are you open"
},
{
"text": "hours of operation"
},
{
"text": "what are your business hours"
},
{
"text": "are you open on weekends"
},
{
"text": "are you open 24 hours"
},
{
"text": "hours open"
},
{
"text": "are you closed?"
},
{
"text": "whan do your offices close"
},
{
"text": "when does your branch open"
},
{
"text": "what time do you open"
},
{
"text": "working hours"
},
{
"text": "what time do you close"
}
]
},
{
"intent": "Business_Information-Website_Pages",
"examples": [
{
"text": "I can't find the URL"
},
{
"text": "your link is missing"
},
{
"text": "I can't find the link"
},
{
"text": "what is the URL for the page"
},
{
"text": "where is the page"
},
{
"text": "how do i get to the page"
},
{
"text": "I can't find the page"
},
{
"text": "I don't see a link anywhere"
},
{
"text": "where is the accounts page"
},
{
"text": "where is your products page"
},
{
"text": "where is your Partners page"
},
{
"text": "where is the link"
},
{
"text": "is your web page missing"
},
{
"text": "how do I find the web page"
},
{
"text": "how do I find the URL"
},
{
"text": "what's the page URL"
},
{
"text": "I can't click on a link"
},
{
"text": "the link isn't there"
},
{
"text": "you should provide a link to the page"
},
{
"text": "your page is missing"
},
{
"text": "how do i find the link"
}
],
"description": ""
},
{
"intent": "General_Conversation-Thanks",
"examples": [
{
"text": "Thanks"
},
{
"text": "coolio"
},
{
"text": "thank you"
},
{
"text": "coolies"
},
{
"text": "ta"
},
{
"text": "cool"
}
],
"description": ""
},
{
"intent": "Business_Information-Services",
"examples": [
{
"text": "service available to me"
},
{
"text": "can I get that from your sydney office"
},
{
"text": "is that available at your los angeles location"
},
{
"text": "what services do you provide"
},
{
"text": "do you provide a specific service at your new york store"
}
]
},
{
"intent": "General_Conversation-Movies",
"examples": [
{
"text": "What do you like about movies"
},
{
"text": "let's go to the movies!"
},
{
"text": "Let us talk about movies"
},
{
"text": "Do you like watching films"
},
{
"text": "have you seen any good movies"
},
{
"text": "What was the last movie you saw?"
},
{
"text": "Do you like movies"
},
{
"text": "What are your thoughts on movies?"
},
{
"text": "Do you enjoy watching films"
},
{
"text": "What are your thoughts on watching films"
},
{
"text": "What are your thoughts on movies generally?"
},
{
"text": "What do you think about movies?"
},
{
"text": "You said you liked movies"
}
],
"description": ""
},
{
"intent": "General_Conversation-Feedback_Positive",
"examples": [
{
"text": "you are fabulous"
},
{
"text": "You are one of the coolest"
},
{
"text": "i like you"
},
{
"text": "you are awesome"
},
{
"text": "you are mesmerizing"
},
{
"text": "you are doing quite well"
},
{
"text": "you are doing really well"
},
{
"text": "you sound good"
},
{
"text": "how cool is this"
},
{
"text": "You really are good"
},
{
"text": "You are good"
},
{
"text": "you are really smart"
},
{
"text": "that was a great answer"
},
{
"text": "you are intelligent"
},
{
"text": "you rock"
},
{
"text": "this is great"
},
{
"text": "this is fantastic"
},
{
"text": "this is cool"
},
{
"text": "i like this"
}
],
"description": ""
},
{
"intent": "General_Conversation-Time",
"examples": [
{
"text": "is it morning"
},
{
"text": "do you have the time"
},
{
"text": "is it time for lunch"
},
{
"text": "is it dinner time now"
},
{
"text": "do you know the time"
},
{
"text": "What time is it?"
},
{
"text": "what is the time"
},
{
"text": "it is breakfast time yet"
},
{
"text": "is it evening yet"
}
],
"description": ""
}
],
"entities": [
{
"entity": "ResponseTypes",
"values": [
{
"type": "synonyms",
"value": "negative",
"synonyms": [
"no",
"nope",
"noppers",
"not at all",
"definitely not",
"not even close",
"no way",
"n",
"don't do it",
"don't do that",
"nopers",
"don't even think about it",
"na",
"nah",
"sure isn't",
"you're joking",
"is that a joke",
"incorrect"
]
},
{
"type": "synonyms",
"value": "Other",