-
Notifications
You must be signed in to change notification settings - Fork 2
/
test-workspace.json
2359 lines (2359 loc) · 63.2 KB
/
test-workspace.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": "Retail Example",
"intents": [
{
"intent": "Customer_Care_Notification_Preferences",
"examples": [
{
"text": "Tell me process to change alerts method"
},
{
"text": "Notifications are to be received on sms"
},
{
"text": "I want to stop getting emails every time my card gets swiped"
},
{
"text": "I want my bank messages to notify me on emails as well"
},
{
"text": "I request to get alerts via email"
},
{
"text": "I need to change my current alert method to something else"
},
{
"text": "How to switch over from sms to email delivery alert?"
},
{
"text": "How to customize notifications that I am receiving?"
},
{
"text": "How to change my notification preferences?"
},
{
"text": "How do I change credit card transaction alerts?"
},
{
"text": "How can I update my delivery methods?"
},
{
"text": "How can I modify notification alerts?"
},
{
"text": "How can I edit delivery methods to new one?"
},
{
"text": "How can I change delivery method?"
},
{
"text": "Changing my notification preferences"
},
{
"text": "Change notifications to sms"
},
{
"text": "Can you send text notifications to additional mobile number?"
},
{
"text": "Can you send alert on my whatsapp?"
},
{
"text": "Can you help me with changing delivery method?"
},
{
"text": "Can I use another way of receiving alerts by editing existing one?"
}
],
"description": "Manage user's notifications."
},
{
"intent": "eCommerce_Payment_Due_Date",
"examples": [
{
"text": "When is the day for paying the bils?"
},
{
"text": "Can you remind me when is my payment due day?"
},
{
"text": "Could you pls advise on due date of my bill?"
},
{
"text": "Date of payment"
},
{
"text": "How can I check when my monthly payment is due?"
},
{
"text": "I need to know the due date for my phone bill"
},
{
"text": "Is there any grace period with due dates?"
},
{
"text": "I wonder what is my payment date?"
},
{
"text": "I would like to know the due date of my bill"
},
{
"text": "Next billing due"
},
{
"text": "On what day is my cellphone payment due?"
},
{
"text": "Statement due"
},
{
"text": "What day do I have to make my payment by?"
},
{
"text": "When due?"
},
{
"text": "When is my current amount due?"
},
{
"text": "When is my current bill pay date?"
},
{
"text": "When is my payment due by?"
},
{
"text": "When is the next payment date?"
},
{
"text": "When will be my next day of payment?"
},
{
"text": "Which is the deadline for the settlement of my bills?"
}
],
"description": "Inquire about when the next payment is due."
},
{
"intent": "Customer_Care_Report_Fraudulent_Use",
"examples": [
{
"text": "Frauded login"
},
{
"text": "Where to inform on a skeptical profile login?"
},
{
"text": "What should I do with an unknown visitor?"
},
{
"text": "What should I do to report a scam? what can I do to report unauthorized log in?"
},
{
"text": "Want to report data breach"
},
{
"text": "Strange activity"
},
{
"text": "Someone has opened an account in my name"
},
{
"text": "My account is been misused. can you assist me with this"
},
{
"text": "I want to make you aware of a case of fake login"
},
{
"text": "Is there contact information to report unauthorized logins?"
},
{
"text": "Is there a way to alert you to a suspicious login?"
},
{
"text": "I'm worried that my savings account might have been compromised."
},
{
"text": "How would I go about telling someone of unwanted usage of my account?"
},
{
"text": "How to register fraud for savings or checking account?"
},
{
"text": "How to inform on dubious proceedings?"
},
{
"text": "How do I respond to texts that I do not think are true?"
},
{
"text": "How do I notify you that my account has been accessed without my permission?"
},
{
"text": "Who do I tell about suspect activity?"
},
{
"text": "How can I tell you if there is a suspect in the record?"
},
{
"text": "How can I report non authorized user?"
}
],
"description": "Report the fraudulent use of an account."
},
{
"intent": "Customer_Care_Products_Offered",
"examples": [
{
"text": "Catalogue look"
},
{
"text": "What products do you offer in the company?"
},
{
"text": "What products can I get from your company?"
},
{
"text": "What products are offered in the company?"
},
{
"text": "What product do you recommend for a tech consultant?"
},
{
"text": "What potential products or services are available?"
},
{
"text": "What kinds of products do you sell?"
},
{
"text": "What kind of products are available?"
},
{
"text": "What does your shop provide?"
},
{
"text": "What does your business sell?"
},
{
"text": "What are your business banking products?"
},
{
"text": "Tell me about shoes"
},
{
"text": "Show me some cars"
},
{
"text": "Show me retirement products"
},
{
"text": "New products"
},
{
"text": "Need to know what products you have"
},
{
"text": "I would like to know what I can buy"
},
{
"text": "Items currently sold"
},
{
"text": "Items available?"
},
{
"text": "I need information on one of your products"
}
],
"description": "Find products that are available for purchase."
},
{
"intent": "Customer_Care_Program_Inquiry",
"examples": [
{
"text": "Are past purchases rewarded?"
},
{
"text": "What about your loyalty program?"
},
{
"text": "Rewards frequent purchasing?"
},
{
"text": "Reward scheme?"
},
{
"text": "Reward points backdated?"
},
{
"text": "Receive credits buys?"
},
{
"text": "Loyalty rewards program?"
},
{
"text": "Is there a rewards system for customers?"
},
{
"text": "Is there a program that rewards me for my use?"
},
{
"text": "Is there a customer loyalty program of some sort available at the moment?"
},
{
"text": "Is there a bonus group offered?"
},
{
"text": "Is it possible to obtain points for buys I have made in the past?"
},
{
"text": "If I purchase frequently will I get benefits?"
},
{
"text": "Frequent purchaser benefits?"
},
{
"text": "Do you have a points program?"
},
{
"text": "Do I get anything for buying a lot?"
},
{
"text": "Can I receive loyalty credit for previous acquisitions?"
},
{
"text": "Can I get points on transactions I've already made?"
},
{
"text": "Can I get points for stuff I bought?"
},
{
"text": "Are pre-purchased items eligible for rewards?"
}
],
"description": "Learn about customer loyalty programs."
},
{
"intent": "Customer_Care_User_Profile",
"examples": [
{
"text": "There is a typo in my listed email address, I need to fix it"
},
{
"text": "Can I set another email address for my account?"
},
{
"text": "Can you help me change the contact email for my account?"
},
{
"text": "Can you please make changes in my account regarding my phone contact information?"
},
{
"text": "Change mailing address"
},
{
"text": "Could you change the phone number in my profile?"
},
{
"text": "Delete a number on my account"
},
{
"text": "I got a new number, help me edit my account"
},
{
"text": "I have a new email account and would like to change my primary contact email. how do I do this?"
},
{
"text": "I moved and have a new landline number. where do I go to update my contact information?"
},
{
"text": "I'm trying to change the email address associated with my account but it keeps giving me an error message can I do it with you?"
},
{
"text": "I need to change my contact information."
},
{
"text": "I need to update the email on my account"
},
{
"text": "I need to update the phone number that you have listed as my contact phone number."
},
{
"text": "It seems like you have my old contact phone number on file, so I would like to have it updated, with your help."
},
{
"text": "I want to change my home address in payment associated with my account, what steps"
},
{
"text": "I will be moving next month. when do I need to give you my new address?"
},
{
"text": "I wish to amend my email address please"
},
{
"text": "I would like to change my contact information. can this be done online or do I have to come in?"
},
{
"text": "I would like to update the email for my online account"
}
],
"description": "Change user's information on their account."
},
{
"intent": "eCommerce_Balance_Inquiry",
"examples": [
{
"text": "Can I see my account balance?"
},
{
"text": "Yes, I want to check my balance"
},
{
"text": "What was my account balance as of june 1st, 2016?"
},
{
"text": "What's my balance?"
},
{
"text": "What is the remaining balance?"
},
{
"text": "What is my full balance?"
},
{
"text": "What is my current outstanding?"
},
{
"text": "Show balance"
},
{
"text": "I would like to check how much my bill is please thank you"
},
{
"text": "I want to ask about my account balance"
},
{
"text": "I'd like to find out how much I owe"
},
{
"text": "How much is my next payment?"
},
{
"text": "Hello. I want to know how much I have to pay this month"
},
{
"text": "Give me the amount due"
},
{
"text": "Current bill amount"
},
{
"text": "Can you tell me my current balance please?"
},
{
"text": "Can you tell me how much my bill is for this month, I think it is going to be expensive?"
},
{
"text": "Can you help me check my balance?"
},
{
"text": "Can you assist me to check my balance?"
},
{
"text": "Can I check my data balance?"
}
],
"description": "Inquire about an account balance."
},
{
"intent": "eCommerce_Modify_Product_Order",
"examples": [
{
"text": "Can I change the number on the order from three to four?"
},
{
"text": "Can I change my order for a new device?"
},
{
"text": "I would like to modify an order I made."
},
{
"text": "I would like to add additional items to an order."
},
{
"text": "I want to update my order."
},
{
"text": "I want to modify an order made"
},
{
"text": "I want to edit an order"
},
{
"text": "I want to change my last order but I don't want to cancel it. can I do that?"
},
{
"text": "Is there a way to modify a previous order?"
},
{
"text": "I ordered a new phone today but forgot to add an extra charger. can you please add it to my original order."
},
{
"text": "I need to make a change to my current order"
},
{
"text": "I need to change my order help please"
},
{
"text": "I need to amend the order I placed yesterday please"
},
{
"text": "I'd like to change some things with my most recent order"
},
{
"text": "How do I change the phone that I ordered?"
},
{
"text": "How can I chance my order?"
},
{
"text": "Hey I would like to change the delivery date on my order please"
},
{
"text": "Changed mind on last order"
},
{
"text": "Can you help me modify the order that I just placed?"
},
{
"text": "Can you change the order I just placed?"
}
],
"description": "Change or modify a placed order."
},
{
"intent": "eCommerce_Cancel_Product_Order",
"examples": [
{
"text": "Please cancel the order I've made this morning"
},
{
"text": "I would like to cancel my order"
},
{
"text": "Cancel existing order"
},
{
"text": "Cancel order placed earlier"
},
{
"text": "Cancel order submitted today"
},
{
"text": "Can you help me to cancel my last order?"
},
{
"text": "Can you help me to cancel the order which I just placed a few minutes ago?"
},
{
"text": "How can I cancel my order of your extended data service?"
},
{
"text": "How can I cancel my previous order?"
},
{
"text": "I just placed and order, but I need to cancel it."
},
{
"text": "I made an order yesterday, can I cancel it?"
},
{
"text": "I need to cancel an order that I placed."
},
{
"text": "I need to cancel the most recent order. how do I do this?"
},
{
"text": "I need to speak to someone about an order I made not long ago, I need to cancel it please"
},
{
"text": "I recently placed an order for a new phone online. I've changed my mind. can you please cancel my order?"
},
{
"text": "I've bought an keyboard and id like to cancel it"
},
{
"text": "I want to cancel the new device switch order I placed"
},
{
"text": "I want to cancel the order"
},
{
"text": "I wish to cancel my last order."
},
{
"text": "I wish to cancel my recent order"
},
{
"text": "Please cancel the order that was recently placed."
}
],
"description": "Cancel an order."
},
{
"intent": "Customer_Care_Profile_Security_Questions",
"examples": [
{
"text": "Why do I need to answer security questions when I speak to a representative on the phone?"
},
{
"text": "Can I change the saved security questions I use when accessing my account via the phone?"
},
{
"text": "Can I reset my online security answer?"
},
{
"text": "Can you reset my security question?"
},
{
"text": "Help me with security questions"
},
{
"text": "Hi I want to know if I can change my security settings for talking to customer services over the phone?"
},
{
"text": "How can I set up a phone security question?"
},
{
"text": "I have a feeling that default security questions for accessing my account are too generic and weak. is there a way to have them changed?"
},
{
"text": "I have forgotten my phone security questions"
},
{
"text": "I need to change my questions to get in"
},
{
"text": "Is it possible to change the security questions I use to access my account when I call you?"
},
{
"text": "It has been a while since I updated my online security questions. can you give me directions on how I can edit my account to create better, more recent and more secure questions?"
},
{
"text": "I want to know my security question when I'm dealing with customer service representative."
},
{
"text": "I would like to change the security question used to access my account. could you please explain the procedure."
},
{
"text": "My email may have been hacked so I'm changing all my passwords and security questions can you change the ones I use for talking to customer support?"
},
{
"text": "Security question answers"
},
{
"text": "Security verification question"
},
{
"text": "Update security questions"
},
{
"text": "What are my profile questions?"
},
{
"text": "When I talk to a customer rep, what security questions can I use?"
}
],
"description": "Review or change user's security questions."
},
{
"intent": "eCommerce_Refund_Payment",
"examples": [
{
"text": "Where can I get refunds?"
},
{
"text": "Arrange refund"
},
{
"text": "Can I get a refund on the activation fee?"
},
{
"text": "Can I get a refund when my internet was out for 6 hours?"
},
{
"text": "Can I get my last month refunded due to the contract cancelation?"
},
{
"text": "Can I just have a full refund?"
},
{
"text": "Can you refund all payments?"
},
{
"text": "Do I get a refund if I paid too much?"
},
{
"text": "I am unfairly charged. am I going to be refunded?"
},
{
"text": "If I cancel some services which have been prepaid, can I receive a refund for part of what has already been paid? what is your refund policy?"
},
{
"text": "I paid my bill twice last month. can you refund my last payment?"
},
{
"text": "Is it possible to refund the latest payment that I made?"
},
{
"text": "I want a refund on the previous purchase I made."
},
{
"text": "I was charged for services that I don't subscribe to. how can I go about getting a refund"
},
{
"text": "I was overcharged on my last bill, I need that refunded."
},
{
"text": "I would like a refund for the service outage last month please."
},
{
"text": "My credit card was double charged for my last bill. how do I get the extra charge refunded to it?"
},
{
"text": "My service was interrupted for 5 days. I would like a refund based on the time that the service was unavailable."
},
{
"text": "Refund my payment"
},
{
"text": "Who do I have to speak to get a refund on one of my payments?"
}
],
"description": "Request a refund for a payment."
},
{
"intent": "eCommerce_Defer_Payment",
"examples": [
{
"text": "Bill extension"
},
{
"text": "Can I ask for a payment deferment?"
},
{
"text": "Can I defer a bill please?"
},
{
"text": "Can I defer the balance on my account?"
},
{
"text": "Can I delay a payment for a couple of days?"
},
{
"text": "Can I pay my bill later than due date?"
},
{
"text": "Can you get payment extension?"
},
{
"text": "Could the due date for my next bill be delayed? I have changed jobs and my old company did not yet pay me?"
},
{
"text": "Hi. my payment due date is't convenient for me. could I change it?"
},
{
"text": "How can avoid late fees?"
},
{
"text": "How can I extent the due date of my payments?"
},
{
"text": "How can I postpone making a payment?"
},
{
"text": "I am not able to pay my bill this week. can you please extend the bill due date by 1 week"
},
{
"text": "I can't pay my bill on time, can I pay it the week after it's due?"
},
{
"text": "I'd like to delay this month's payment by a week please."
},
{
"text": "I need to defer my bill payment by 7 days."
},
{
"text": "Is there any way that I can defer a payment for my phone? I will be on vacation and won't be able to do it from overseas?"
},
{
"text": "I would like to extend my payment due date"
},
{
"text": "Payment after due date"
},
{
"text": "Please keep power on I can pay you later"
}
],
"description": "Delay the payment due date for a current bill."
},
{
"intent": "Customer_Care_Contact_Us",
"examples": [
{
"text": "Can you give me the number to the general manager?"
},
{
"text": "Who can I call?"
},
{
"text": "Which is the number of the main office here in los angeles?"
},
{
"text": "Where can I reach the company personally?"
},
{
"text": "What is you email?"
},
{
"text": "What is the phone number to call to order new line of service?"
},
{
"text": "What is the customer number?"
},
{
"text": "What is the closest store's phone number?"
},
{
"text": "Tell me the number to your general department"
},
{
"text": "Need your phone number"
},
{
"text": "I would like to speak to customer service."
},
{
"text": "I want to know number to the store closest to me"
},
{
"text": "Is there a phone number to your shop at fort worth tx?"
},
{
"text": "I need someone to call me. can you please arrange that!?"
},
{
"text": "How do I best contact you when there has been a problem with my bill?"
},
{
"text": "How can I contact your business?"
},
{
"text": "Hi can you let me have the telephone number of my local store please?"
},
{
"text": "Can I text you a question?"
},
{
"text": "Can I get some more information?"
},
{
"text": "Can I contact the business by post?"
}
],
"description": "Find basic contact information."
},
{
"intent": "Customer_Care_Store_Hours",
"examples": [
{
"text": "Are the stores open early?"
},
{
"text": "What time do stores close?"
},
{
"text": "What time does the central manchester store shut on a saturday?"
},
{
"text": "What time are you closing today?"
},
{
"text": "What is the opening time for the washington store?"
},
{
"text": "What are your hous?"
},
{
"text": "What are ur opening hours?"
},
{
"text": "What are the saturday opening times for the local store?"
},
{
"text": "What are the hours of operation?"
},
{
"text": "What are the business hours of the store nearest to me?"
},
{
"text": "Is the branch open now?"
},
{
"text": "How long are you open?"
},
{
"text": "How early do you open?"
},
{
"text": "Does the store in the city center opens till 8pm on weekends?"
},
{
"text": "Can you tell me how late the stores are open till?"
},
{
"text": "At what hour can I swing by?"
},
{
"text": "Are you open on sundays, and if so what are the hours?"
},
{
"text": "What time is your store open on saturday?"
},
{
"text": "Are you open on bank holidays?"
},
{
"text": "Are you open during thanksgiving?"
}
],
"description": "Find business hours."
},
{
"intent": "Customer_Care_Authorized_User",
"examples": [
{
"text": "Can you help me add another user to this account?"
},
{
"text": "Add new user please"
},
{
"text": "Add user"
},
{
"text": "Can I add another person to have authority over my account?"
},
{
"text": "Can I add another user?"
},
{
"text": "Hi, how can I add a user so he can have all the access to my account?"
},
{
"text": "I'd like to add a person to my billing account"
},
{
"text": "I need to add someone to my account settings."
},
{
"text": "Is it possible to add a user that is allowed to do change everything but cannot anything on the financial part?"
},
{
"text": "I want to add a new user who can make changes to and use the account, while I retain sole ownership?"
},
{
"text": "I want to add a secondary user to my account"
},
{
"text": "I want to add my roommate to my plan, but keep sending the bill to me. can I do that here?"
},
{
"text": "I want to add my wife to the account"
},
{
"text": "I want to add someone who can access my account."
},
{
"text": "I want to authorize my spouse to be able to make changes in my account, but not correlated with any financial or ownership responsibilities."
},
{
"text": "I would like to add an authorized user to my account."
},
{
"text": "I would like to add my son to my account. I want him to be able to access the account and to make any changes he needs. can you help me with this?"
},
{
"text": "I would like to add my wife to my account with access and management privileges"
},
{
"text": "I would like to add someone to my account who will be authorized to access the account and make changes."
},
{
"text": "Please update my account to allow my spouse to access the account?"
}
],
"description": "Change who has access to an account."
},
{
"intent": "eCommerce_Create_Product_Order",
"examples": [
{