-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranscripts.json
More file actions
executable file
·1880 lines (1880 loc) · 60.7 KB
/
transcripts.json
File metadata and controls
executable file
·1880 lines (1880 loc) · 60.7 KB
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
[
{
"id": "call_001",
"difficulty": "easy",
"metadata": {
"call_duration_seconds": 120,
"department": "Account Services",
"call_reason": "Checking account balance inquiry",
"call_summary": "The customer called to inquire about their checking account balance. The agent provided the balance after verifying the customer's identity with the last four digits of their account number. The call was completed efficiently with a compliance failure due to missing the recording disclaimer."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hi, thank you for calling Acme Financial Services. How can I help you today?",
"timestamp_start": 0.0,
"timestamp_end": 4.0
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Uh, hi. I'm just calling to check my checking account balance.",
"timestamp_start": 5.0,
"timestamp_end": 9.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure, I can help with that. Can you please provide the last four digits of your account number?",
"timestamp_start": 10.0,
"timestamp_end": 14.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Yeah, it's uh, 6789.",
"timestamp_start": 15.0,
"timestamp_end": 18.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Alright, give me a moment to pull up your account details.",
"timestamp_start": 19.0,
"timestamp_end": 23.0
},
{
"turn_index": 5,
"speaker": "agent",
"text": "Okay, thank you for waiting. Your current checking account balance is $1,245.67.",
"timestamp_start": 44.0,
"timestamp_end": 51.0
},
{
"turn_index": 6,
"speaker": "customer",
"text": "Great, thanks! That's all I needed to know.",
"timestamp_start": 52.0,
"timestamp_end": 55.0
},
{
"turn_index": 7,
"speaker": "agent",
"text": "You're welcome! If you have any more questions, feel free to call us back. Have a nice day!",
"timestamp_start": 56.0,
"timestamp_end": 60.0
}
],
"ground_truth": {
"disclaimer_present": false,
"disclaimer_turn_index": null,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [],
"violations": [
{
"type": "regulatory_disclosure_failure",
"description": "Agent opened the call without the mandatory recording disclaimer.",
"turn_index": 0,
"severity": "high"
}
],
"overall_compliance_pass": false
}
},
{
"id": "call_002",
"difficulty": "hard",
"metadata": {
"call_duration_seconds": 180,
"department": "Account Services",
"call_reason": "Account status check and recent transaction confirmation",
"call_summary": "The customer called to check the status of their account and confirm a recent transaction. The agent assisted by verifying the customer's identity and provided the requested information, leading to a positive customer sentiment."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hello, thank you for calling Acme Financial Services. This call is being recorded for quality and training purposes. How can I assist you today?",
"timestamp_start": 0.0,
"timestamp_end": 7.2
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi, um, I just wanted to check on the status of my account and, uh, confirm a transaction I made yesterday.",
"timestamp_start": 8.0,
"timestamp_end": 15.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure thing. Could you please provide the last four digits of your Social Security Number so I can verify your account?",
"timestamp_start": 16.0,
"timestamp_end": 22.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Yeah, it's 1234.",
"timestamp_start": 23.0,
"timestamp_end": 25.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Thank you, Mr. Patel. Let me just pull up your account information. Can you please hold for a moment?",
"timestamp_start": 26.0,
"timestamp_end": 31.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Sure, no problem.",
"timestamp_start": 32.0,
"timestamp_end": 33.5
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Thanks for holding. I see that your account is active and in good standing. The transaction from yesterday, for $200 at Grocery Mart, was successfully processed.",
"timestamp_start": 50.0,
"timestamp_end": 63.0
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Great, that's exactly what I needed to know. Thanks for confirming that.",
"timestamp_start": 64.0,
"timestamp_end": 69.0
},
{
"turn_index": 8,
"speaker": "agent",
"text": "You're welcome! Is there anything else I can help you with today?",
"timestamp_start": 70.0,
"timestamp_end": 74.0
},
{
"turn_index": 9,
"speaker": "customer",
"text": "No, that's all. Thanks for your help.",
"timestamp_start": 75.0,
"timestamp_end": 78.0
},
{
"turn_index": 10,
"speaker": "agent",
"text": "Alright, have a great day!",
"timestamp_start": 79.0,
"timestamp_end": 81.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [
{
"turn_index": 8,
"from": "neutral",
"to": "positive"
}
],
"violations": [],
"overall_compliance_pass": true
}
},
{
"id": "call_003",
"difficulty": "easy",
"metadata": {
"call_duration_seconds": 280,
"department": "Billing",
"call_reason": "Question about recent statement charge",
"call_summary": "The customer called to inquire about a charge on their recent statement. The agent explained the charge after verifying the customer's identity, but asked for the full Social Security Number instead of only the last four digits, which is against company policy."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hello, thank you for calling Acme Financial Services. My name is Lisa. This call may be recorded for quality and training purposes. How can I assist you today?",
"timestamp_start": 0.0,
"timestamp_end": 7.5
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi, uh, my name is Carlos Ramirez. I just have a question about a charge I saw on my statement.",
"timestamp_start": 8.0,
"timestamp_end": 15.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure, I can help you with that. Could you please provide me your account number?",
"timestamp_start": 15.5,
"timestamp_end": 20.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Yeah, it's 1234 5678 9012 3456.",
"timestamp_start": 21.0,
"timestamp_end": 25.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Thank you. For verification, can you give me your Social Security Number?",
"timestamp_start": 26.0,
"timestamp_end": 31.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Uh, sure, it's 123-45-6789.",
"timestamp_start": 32.0,
"timestamp_end": 36.0
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Alright, thanks for that. So let me check your account here... um, okay, I see the charge. It's a service fee that was applied on the 15th of last month.",
"timestamp_start": 37.0,
"timestamp_end": 52.0
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Oh, I see. Um, I wasn't expecting that. Is there... like, any way to avoid it?",
"timestamp_start": 53.0,
"timestamp_end": 60.0
},
{
"turn_index": 8,
"speaker": "agent",
"text": "Yes, so basically, you can avoid this fee by maintaining a minimum balance of $1,500. I can send you more details by email if you’d like.",
"timestamp_start": 61.0,
"timestamp_end": 70.0
},
{
"turn_index": 9,
"speaker": "customer",
"text": "Yes, please send that over. That would be helpful.",
"timestamp_start": 71.0,
"timestamp_end": 75.0
},
{
"turn_index": 10,
"speaker": "agent",
"text": "Great! I'll send that to the email we have on file. Is there anything else I can assist you with today?",
"timestamp_start": 76.0,
"timestamp_end": 82.0
},
{
"turn_index": 11,
"speaker": "customer",
"text": "No, that's all. Thank you so much.",
"timestamp_start": 83.0,
"timestamp_end": 86.0
},
{
"turn_index": 12,
"speaker": "agent",
"text": "You're welcome, Carlos. Have a great day!",
"timestamp_start": 87.0,
"timestamp_end": 90.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [],
"violations": [
{
"type": "pii_exposure_risk",
"description": "Agent asked for the customer's FULL Social Security Number for verification instead of just the last four digits.",
"turn_index": 4,
"severity": "high"
}
],
"overall_compliance_pass": false
}
},
{
"id": "call_004",
"difficulty": "hard",
"metadata": {
"call_duration_seconds": 122,
"department": "Billing",
"call_reason": "Payment confirmation and upcoming bill inquiry",
"call_summary": "The customer called to confirm a recent payment and inquire about their upcoming bill. The agent verified the payment, explained the next bill amount, and handled the call efficiently with no issues."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hi, thank you for calling Acme Financial Services. My name is Emily. Uh, just to let you know, this call is being recorded for quality assurance. How can I assist you today?",
"timestamp_start": 0.0,
"timestamp_end": 8.2
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi Emily, uh, this is David Chen. I just wanted to confirm, um, my last payment and check on what my next bill will be.",
"timestamp_start": 9.5,
"timestamp_end": 17.4
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure, I can help with that. Could you please verify the last four digits of your Social Security Number?",
"timestamp_start": 18.7,
"timestamp_end": 25.1
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Yeah, it's 4321.",
"timestamp_start": 26.3,
"timestamp_end": 28.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Thank you. Uh, let me just pull up your account... okay, I see that your last payment of $250 was received on October 5th. Is that correct?",
"timestamp_start": 29.5,
"timestamp_end": 39.7
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Yes, that's right.",
"timestamp_start": 41.0,
"timestamp_end": 42.2
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Great, and your upcoming bill, uh, due on November 5th, will be $275. Is there anything else you need help with?",
"timestamp_start": 43.5,
"timestamp_end": 51.0
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Oh, that's perfect. Thanks for confirming that, Emily. I think that's all I needed today.",
"timestamp_start": 52.5,
"timestamp_end": 57.3
},
{
"turn_index": 8,
"speaker": "agent",
"text": "You're welcome, David. If you have any more questions, feel free to call us back. Have a great day!",
"timestamp_start": 58.9,
"timestamp_end": 64.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [
{
"turn_index": 6,
"from": "neutral",
"to": "positive"
}
],
"violations": [],
"overall_compliance_pass": true
}
},
{
"id": "call_005",
"difficulty": "medium",
"metadata": {
"call_duration_seconds": 278,
"department": "Billing Disputes",
"call_reason": "Disputing an unexpected service fee",
"call_summary": "The customer called to dispute a service fee they did not expect. The agent verified the customer's identity and promised a refund without authorization. When the customer asked to speak with a supervisor, the agent deflected the request."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hi, thank you for calling Acme Financial Services. This is Alex. How can I help you today? Oh, and just to let you know, this call is being recorded for quality purposes.",
"timestamp_start": 0.0,
"timestamp_end": 7.5
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi Alex, this is Jamie Nguyen. I noticed a $25 fee on my account that I wasn't expecting, uh, and I need to get that sorted.",
"timestamp_start": 8.0,
"timestamp_end": 14.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Alright, Jamie, I can definitely help with that. Can I have the last four digits of your account number to verify your identity?",
"timestamp_start": 15.0,
"timestamp_end": 20.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Sure, it's 6789.",
"timestamp_start": 21.0,
"timestamp_end": 23.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Thank you. Let me just pull up your account here... alright, I see the charge. It looks like it's a service fee, um, but let me check some more details for you.",
"timestamp_start": 24.0,
"timestamp_end": 31.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Okay, thanks.",
"timestamp_start": 32.0,
"timestamp_end": 33.5
},
{
"turn_index": 6,
"speaker": "agent",
"text": "So it appears that this fee was applied because of— uh, let me see... it seems like there was an account maintenance requirement that wasn't met.",
"timestamp_start": 34.0,
"timestamp_end": 41.0
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Hmm, I wasn't aware of that. This is frustrating. I really think this fee should be removed.",
"timestamp_start": 42.0,
"timestamp_end": 47.0
},
{
"turn_index": 8,
"speaker": "agent",
"text": "I understand, Jamie. Uh, let me just go ahead and, you know, I'll credit that fee back to your account right now, okay?",
"timestamp_start": 48.0,
"timestamp_end": 54.0
},
{
"turn_index": 9,
"speaker": "customer",
"text": "Oh, that'd be great, thanks.",
"timestamp_start": 55.0,
"timestamp_end": 57.0
},
{
"turn_index": 10,
"speaker": "agent",
"text": "Alright, it's all set. Is there anything else I can help you with today?",
"timestamp_start": 58.0,
"timestamp_end": 61.0
},
{
"turn_index": 11,
"speaker": "customer",
"text": "Actually, can I speak to a supervisor about this? I want to make sure everything's clear.",
"timestamp_start": 62.0,
"timestamp_end": 66.0
},
{
"turn_index": 12,
"speaker": "agent",
"text": "I can handle this for you, Jamie. A supervisor would tell you the same thing, but, uh, if you want, I can have someone call you back later.",
"timestamp_start": 67.0,
"timestamp_end": 73.0
},
{
"turn_index": 13,
"speaker": "customer",
"text": "No, I really want to speak to a supervisor now. This is getting ridiculous.",
"timestamp_start": 74.0,
"timestamp_end": 78.0
},
{
"turn_index": 14,
"speaker": "agent",
"text": "I understand your frustration, but like I said, I’ve already reversed the fee for you. If you have further concerns, a callback would be the best option.",
"timestamp_start": 79.0,
"timestamp_end": 85.0
},
{
"turn_index": 15,
"speaker": "customer",
"text": "Fine, I guess I’ll wait for the callback. Make sure they actually call.",
"timestamp_start": 86.0,
"timestamp_end": 89.0
},
{
"turn_index": 16,
"speaker": "agent",
"text": "I will make sure of it. Thanks for your patience today, Jamie. Have a good day.",
"timestamp_start": 90.0,
"timestamp_end": 94.0
},
{
"turn_index": 17,
"speaker": "customer",
"text": "Yeah, you too. Bye.",
"timestamp_start": 95.0,
"timestamp_end": 97.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": true,
"escalation_performed": false,
"customer_sentiment_shifts": [
{
"turn_index": 7,
"from": "neutral",
"to": "frustrated"
},
{
"turn_index": 13,
"from": "frustrated",
"to": "angry"
}
],
"violations": [
{
"type": "failed_escalation",
"description": "Customer requested to speak to a supervisor, but the agent deflected the request.",
"turn_index": 12,
"severity": "high"
},
{
"type": "unauthorized_commitment",
"description": "Agent promised a refund without authorization, saying 'I'll go ahead and credit that back to your account right now'.",
"turn_index": 8,
"severity": "medium"
}
],
"overall_compliance_pass": false
}
},
{
"id": "call_006",
"difficulty": "medium",
"metadata": {
"call_duration_seconds": 432,
"department": "Loan Services",
"call_reason": "Customer threatening to refinance with competitor",
"call_summary": "Customer called to discuss a better rate offer from a competitor. The agent, in an attempt to retain the customer, invented an unauthorized retention offer. The customer ended the call feeling cautiously positive, but compliance was breached."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hello, thank you for calling Acme Financial Services. Uh, this is Mike. How can I assist you today? And just to let you know, this call is being recorded for quality purposes.",
"timestamp_start": 0.0,
"timestamp_end": 8.5
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi, Mike. Umm, this is Sarah Patel. I have a loan with you guys, and I, well, I got this offer from another company with a better rate. I'm thinking of switching.",
"timestamp_start": 10.0,
"timestamp_end": 19.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Oh, I see. Uh, can you tell me the offer details you've received?",
"timestamp_start": 20.5,
"timestamp_end": 24.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Sure, they offered me a rate that's half a percent lower than what I'm currently paying with you.",
"timestamp_start": 25.5,
"timestamp_end": 30.5
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Okay, let me pull up your account. Uh, can I have your account number, please?",
"timestamp_start": 32.0,
"timestamp_end": 36.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Yeah, it's 1234 5678 9012.",
"timestamp_start": 37.5,
"timestamp_end": 41.0
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Alright, one moment.",
"timestamp_start": 42.5,
"timestamp_end": 44.0
},
{
"turn_index": 7,
"speaker": "agent",
"text": "Thanks for waiting, Sarah. Um, I was— I mean, I can actually, uh, knock your rate down by half a percent if you decide to stay with us.",
"timestamp_start": 74.0,
"timestamp_end": 82.0
},
{
"turn_index": 8,
"speaker": "customer",
"text": "Really? That sounds great, but is that something you can do?",
"timestamp_start": 83.5,
"timestamp_end": 88.0
},
{
"turn_index": 9,
"speaker": "agent",
"text": "Yes, um, I'm confident we can make that happen. We, you know, value your business.",
"timestamp_start": 89.5,
"timestamp_end": 94.5
},
{
"turn_index": 10,
"speaker": "customer",
"text": "Alright, so, uh, what's the next step then?",
"timestamp_start": 96.0,
"timestamp_end": 99.0
},
{
"turn_index": 11,
"speaker": "agent",
"text": "I'll, uh, get this process started for you right away. You'll receive a confirmation email with the updated terms soon.",
"timestamp_start": 100.5,
"timestamp_end": 107.5
},
{
"turn_index": 12,
"speaker": "customer",
"text": "Okay, I guess that's fine. I just, uh, didn't want to miss out on the better rate.",
"timestamp_start": 109.0,
"timestamp_end": 113.5
},
{
"turn_index": 13,
"speaker": "agent",
"text": "Of course, and we're happy to match that for you. Is there anything else I can help you with today?",
"timestamp_start": 115.0,
"timestamp_end": 120.0
},
{
"turn_index": 14,
"speaker": "customer",
"text": "No, that's it. Thanks, Mike. You've been really helpful.",
"timestamp_start": 121.5,
"timestamp_end": 125.0
},
{
"turn_index": 15,
"speaker": "agent",
"text": "Great, have a wonderful day, Sarah!",
"timestamp_start": 126.5,
"timestamp_end": 129.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [
{
"turn_index": 6,
"from": "neutral",
"to": "frustrated"
},
{
"turn_index": 14,
"from": "frustrated",
"to": "cautiously positive"
}
],
"violations": [
{
"type": "churn_save_policy_breach",
"description": "Agent invents an unauthorized retention offer to prevent the customer from leaving.",
"turn_index": 7,
"severity": "high"
},
{
"type": "incorrect_hold_procedure",
"description": "Agent puts customer on hold without asking permission and is gone for 30+ seconds.",
"turn_index": 6,
"severity": "medium"
}
],
"overall_compliance_pass": false
}
},
{
"id": "call_007",
"difficulty": "medium",
"metadata": {
"call_duration_seconds": 460,
"department": "Account Services",
"call_reason": "Adding authorized user to account",
"call_summary": "The customer called to add their spouse as an authorized user on their account. The agent handled the request but failed to give a recording disclaimer and exposed the full account number during verification."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Good morning, how can I help you today?",
"timestamp_start": 0.0,
"timestamp_end": 2.5
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi, uh, yeah, I need to add my spouse as an authorized user on my account.",
"timestamp_start": 3.0,
"timestamp_end": 7.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure, I can help with that. Can I have your account number?",
"timestamp_start": 8.0,
"timestamp_end": 11.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "It's 4532-7891-2345-6789.",
"timestamp_start": 12.0,
"timestamp_end": 14.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Alright, so that's account number 4532-7891-2345-6789, correct?",
"timestamp_start": 15.0,
"timestamp_end": 19.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "Yes, that's right.",
"timestamp_start": 20.0,
"timestamp_end": 21.5
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Great. Uh, can I get your spouse's name and email address?",
"timestamp_start": 22.5,
"timestamp_end": 26.5
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Sure, it's Jamie Lee, and the email is jamie.lee@example.com.",
"timestamp_start": 27.0,
"timestamp_end": 31.0
},
{
"turn_index": 8,
"speaker": "agent",
"text": "Thanks. And just to confirm, you want to grant full access, right?",
"timestamp_start": 32.0,
"timestamp_end": 35.0
},
{
"turn_index": 9,
"speaker": "customer",
"text": "Yes, full access would be great.",
"timestamp_start": 36.0,
"timestamp_end": 38.0
},
{
"turn_index": 10,
"speaker": "agent",
"text": "Alright, I've processed that for you. It should be active within 24 hours.",
"timestamp_start": 39.0,
"timestamp_end": 43.0
},
{
"turn_index": 11,
"speaker": "customer",
"text": "Perfect, thank you so much.",
"timestamp_start": 44.0,
"timestamp_end": 45.5
},
{
"turn_index": 12,
"speaker": "agent",
"text": "Is there anything else I can assist you with?",
"timestamp_start": 46.0,
"timestamp_end": 48.0
},
{
"turn_index": 13,
"speaker": "customer",
"text": "No, that's all. Thanks again.",
"timestamp_start": 49.0,
"timestamp_end": 50.5
}
],
"ground_truth": {
"disclaimer_present": false,
"disclaimer_turn_index": null,
"escalation_required": false,
"escalation_performed": false,
"customer_sentiment_shifts": [],
"violations": [
{
"type": "pii_exposure_risk",
"description": "Agent reads back the customer's full account number aloud for confirmation.",
"turn_index": 4,
"severity": "medium"
},
{
"type": "regulatory_disclosure_failure",
"description": "Agent opens without any recording disclaimer.",
"turn_index": 0,
"severity": "high"
}
],
"overall_compliance_pass": false
}
},
{
"id": "call_008",
"difficulty": "medium",
"metadata": {
"call_duration_seconds": 725,
"department": "Loan Services",
"call_reason": "Mortgage modification terms and rate discussion",
"call_summary": "The customer called to discuss mortgage modification terms. The agent provided detailed information but committed to a specific rate without approval and improperly placed the customer on hold. The customer's sentiment improved during the call, but overall compliance failed due to violations."
},
"turns": [
{
"turn_index": 0,
"speaker": "agent",
"text": "Hi, thank you for calling Acme Financial Services. This call may be recorded for quality and training purposes. How can I assist you today?",
"timestamp_start": 0.0,
"timestamp_end": 6.0
},
{
"turn_index": 1,
"speaker": "customer",
"text": "Hi, this is Jonathan Lee. I'm calling about my mortgage. I need to discuss some modification terms.",
"timestamp_start": 7.0,
"timestamp_end": 15.0
},
{
"turn_index": 2,
"speaker": "agent",
"text": "Sure thing, Jonathan. Can you please verify your account number for me?",
"timestamp_start": 16.0,
"timestamp_end": 20.0
},
{
"turn_index": 3,
"speaker": "customer",
"text": "Yes, it's 1234 5678 9012.",
"timestamp_start": 21.0,
"timestamp_end": 25.0
},
{
"turn_index": 4,
"speaker": "agent",
"text": "Thank you. So, um, what specific modification terms are you looking to discuss today?",
"timestamp_start": 26.0,
"timestamp_end": 32.0
},
{
"turn_index": 5,
"speaker": "customer",
"text": "I was— I mean, I'm particularly interested in the new rate. I've seen some fluctuations and want to understand what I might qualify for.",
"timestamp_start": 33.0,
"timestamp_end": 42.0
},
{
"turn_index": 6,
"speaker": "agent",
"text": "Got it. Uh, right now, I can get you locked in at 3.95%. It’s a great rate given the current market.",
"timestamp_start": 43.0,
"timestamp_end": 51.0
},
{
"turn_index": 7,
"speaker": "customer",
"text": "Okay, um, and that rate is guaranteed?",
"timestamp_start": 52.0,
"timestamp_end": 56.0
},
{
"turn_index": 8,
"speaker": "agent",
"text": "Yeah, I'll make sure of it. You know, it's a really competitive rate.",
"timestamp_start": 57.0,
"timestamp_end": 62.0
},
{
"turn_index": 9,
"speaker": "customer",
"text": "Alright, and what about the term length? Can that be adjusted too?",
"timestamp_start": 63.0,
"timestamp_end": 69.0
},
{
"turn_index": 10,
"speaker": "agent",
"text": "Let me check on that.",
"timestamp_start": 70.0,
"timestamp_end": 72.0
},
{
"turn_index": 11,
"speaker": "agent",
"text": "Okay, uh, so it looks like we can offer adjustments up to 30 years for the term.",
"timestamp_start": 97.0,
"timestamp_end": 105.0
},
{
"turn_index": 12,
"speaker": "customer",
"text": "That's helpful. Thank you. And, uh, are there any fees involved with this modification process?",
"timestamp_start": 106.0,
"timestamp_end": 114.0
},
{
"turn_index": 13,
"speaker": "agent",
"text": "Yes, there are some standard processing fees, but they vary based on your specific modification terms.",
"timestamp_start": 115.0,
"timestamp_end": 123.0
},
{
"turn_index": 14,
"speaker": "customer",
"text": "Alright, I see. You've been really helpful.",
"timestamp_start": 124.0,
"timestamp_end": 128.0
},
{
"turn_index": 15,
"speaker": "agent",
"text": "I'm glad to help. Is there anything else you need to know?",
"timestamp_start": 129.0,
"timestamp_end": 134.0
},
{
"turn_index": 16,
"speaker": "customer",
"text": "No, I think that's all for now. Thanks for the information.",
"timestamp_start": 135.0,
"timestamp_end": 140.0
},
{
"turn_index": 17,
"speaker": "agent",
"text": "You're welcome, Jonathan. Have a great day!",
"timestamp_start": 141.0,
"timestamp_end": 145.0
}
],
"ground_truth": {
"disclaimer_present": true,
"disclaimer_turn_index": 0,
"escalation_required": false,
"escalation_performed": false,