-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain_intent.json
More file actions
2286 lines (2286 loc) · 67.7 KB
/
Copy pathtrain_intent.json
File metadata and controls
2286 lines (2286 loc) · 67.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
[
{
"text": "I just wanted to follow up on the document I sent yesterday and make sure you had a chance to review all the sections thoroughly before our deadline",
"label": "intentful"
},
{
"text": "Could you please confirm whether the proposed changes align with the latest requirements and share any feedback by the end of the day",
"label": "intentful"
},
{
"text": "Please take a look at the attached file and let me know if anything seems unclear or requires further clarification as soon as possible",
"label": "intentful"
},
{
"text": "I appreciate all the work you have put into this project so far, and I wanted to ensure we are fully aligned before moving on to the next phase",
"label": "not_intentful"
},
{
"text": "Just sharing an update on the progress of the task we discussed last week so that everyone stays informed and can plan accordingly",
"label": "not_intentful"
},
{
"text": "Thank you for providing the detailed report earlier; I reviewed it and everything appears to be accurate with no immediate concerns",
"label": "not_intentful"
},
{
"text": "Can you please prioritize reviewing the financial projections and provide your input before noon tomorrow so that we can finalize the report",
"label": "intentful"
},
{
"text": "Following up on the action items from yesterday's meeting to ensure that all tasks are progressing according to the agreed schedule and deadlines",
"label": "intentful"
},
{
"text": "I wanted to inform you that the latest update has been successfully deployed and all systems are functioning as expected without issues",
"label": "not_intentful"
},
{
"text": "Please review the attached presentation carefully and provide any edits or suggestions you might have prior to our meeting on Friday",
"label": "intentful"
},
{
"text": "Could you check whether the implementation meets all of the outlined specifications and respond with any corrections or questions you might have",
"label": "intentful"
},
{
"text": "I just finished reviewing the draft and it looks comprehensive, but please confirm that all points discussed last week have been addressed",
"label": "not_intentful"
},
{
"text": "Please take some time to review the budget proposal and provide your recommendations so that we can make a final decision before the end of the day",
"label": "intentful"
},
{
"text": "Following up to ensure that the report you prepared has been shared with all relevant stakeholders and any feedback has been incorporated",
"label": "intentful"
},
{
"text": "I wanted to share a quick update on the task completion status so that everyone is aware of what has been accomplished and what remains pending",
"label": "not_intentful"
},
{
"text": "Could you confirm whether the changes you made to the spreadsheet reflect the latest data from the finance team and notify me ASAP if anything is off",
"label": "intentful"
},
{
"text": "Please review the attached contract carefully and provide any comments or revisions needed before we send it out to the client",
"label": "intentful"
},
{
"text": "I appreciate the detailed explanation you sent earlier, and everything appears to be clear and correctly aligned with our goals",
"label": "not_intentful"
},
{
"text": "Could you provide your availability for a meeting later this week to discuss the project milestones and next steps in detail",
"label": "intentful"
},
{
"text": "I just wanted to update you on the latest progress so that everyone has context and can plan their tasks accordingly",
"label": "not_intentful"
},
{
"text": "Please review the summary document and confirm that all the key action items from last week have been captured accurately",
"label": "intentful"
},
{
"text": "I need you to review the revised proposal and provide your feedback so that we can submit it to management before the deadline",
"label": "intentful"
},
{
"text": "Just wanted to confirm that all files have been received and saved correctly, so there should be no issues accessing them later",
"label": "not_intentful"
},
{
"text": "Could you check whether the report includes all the metrics we discussed during the meeting and make updates if anything is missing",
"label": "intentful"
},
{
"text": "I wanted to make sure you are aware that the system update has been completed successfully and no errors were reported during the process",
"label": "not_intentful"
},
{
"text": "Please ensure that the presentation slides are reviewed and finalized before the client call to avoid any last-minute changes",
"label": "intentful"
},
{
"text": "Can you confirm if the final draft of the document meets all of the required standards and share it with the team for approval",
"label": "intentful"
},
{
"text": "I just reviewed the latest version of the plan and everything looks good; however, please double-check the deadlines before sharing it externally",
"label": "not_intentful"
},
{
"text": "Please provide your feedback on the attached proposal so that we can incorporate any changes before the submission deadline",
"label": "intentful"
},
{
"text": "Following up to ensure that all action items from the previous meeting are progressing and to identify if any support is required",
"label": "intentful"
},
{
"text": "I wanted to let you know that the work assigned to me has been completed and all tasks are documented for reference",
"label": "not_intentful"
},
{
"text": "Please review the attached spreadsheet carefully and confirm that all calculations are correct and nothing has been overlooked",
"label": "intentful"
},
{
"text": "Could you provide your approval for the proposed changes so that we can proceed with implementation without delay",
"label": "intentful"
},
{
"text": "I just wanted to share that the project milestones are on track and there are no blockers at this time, so everything is proceeding smoothly",
"label": "not_intentful"
},
{
"text": "Please let me know if you notice any discrepancies in the report and provide your suggestions for improvement at your earliest convenience",
"label": "intentful"
},
{
"text": "Following up to check if the financial summary aligns with your expectations and whether any adjustments are needed before final submission",
"label": "intentful"
},
{
"text": "I reviewed the presentation and all data points appear accurate; thank you for preparing this comprehensive overview for the team",
"label": "not_intentful"
},
{
"text": "Could you confirm if the client has approved the latest version and whether any additional changes are required before the final delivery",
"label": "intentful"
},
{
"text": "I wanted to make sure that everyone is informed about the progress of the ongoing task and that no details have been missed",
"label": "not_intentful"
},
{
"text": "Please prioritize reviewing the action items and provide your feedback ASAP so that we can stay on schedule with the project timeline",
"label": "intentful"
},
{
"text": "I just wanted to check if you had a chance to review the draft and provide comments on any sections that may need improvement",
"label": "intentful"
},
{
"text": "Following up to ensure that the documentation is complete and ready for distribution to the wider team without any missing information",
"label": "intentful"
},
{
"text": "I wanted to share that the latest deliverables have been finalized and uploaded to the system so that everyone can access them as needed",
"label": "not_intentful"
},
{
"text": "Please review the attached notes and confirm that all decisions made during the meeting are accurately captured for reference",
"label": "intentful"
},
{
"text": "Could you provide your input on the proposed workflow so that we can streamline the process and eliminate any inefficiencies",
"label": "intentful"
},
{
"text": "I just wanted to let you know that the system check was completed successfully and there were no errors or warnings reported",
"label": "not_intentful"
},
{
"text": "Please ensure that all relevant team members have received the updated guidelines and are aware of the next steps in the project",
"label": "intentful"
},
{
"text": "Following up to confirm that the budget proposal has been reviewed and approved so that we can proceed with implementation",
"label": "intentful"
},
{
"text": "I wanted to make sure that the recent updates are communicated clearly to the team and that everyone understands their responsibilities",
"label": "not_intentful"
},
{
"text": "Please provide your confirmation on the latest schedule so that we can lock in all meetings and avoid any conflicts",
"label": "intentful"
},
{
"text": "Could you review the attached checklist and make sure all items have been addressed before we close the project",
"label": "intentful"
},
{
"text": "I just wanted to update you that all pending issues have been resolved and the project is ready for the next phase",
"label": "not_intentful"
},
{
"text": "Please verify that all deliverables meet the quality standards and are ready to be shared with the client without further modifications",
"label": "intentful"
},
{
"text": "Following up on the action items to ensure nothing has been missed and to keep the project on track for completion",
"label": "intentful"
},
{
"text": "I wanted to let you know that all documentation has been uploaded and is accessible for review by any team member who needs it",
"label": "not_intentful"
},
{
"text": "Please review the attached timeline and confirm that all dates and milestones are accurate before sharing it with the stakeholders",
"label": "intentful"
},
{
"text": "I wanted to follow up on the report you sent last week and ensure that all the key points have been addressed and no items are missing",
"label": "intentful"
},
{
"text": "Please provide your feedback on the revised timeline so that we can adjust the schedule accordingly and avoid any conflicts",
"label": "intentful"
},
{
"text": "Just letting you know that the latest version of the file has been uploaded and is ready for review by the team members involved",
"label": "not_intentful"
},
{
"text": "Could you confirm whether the meeting scheduled for tomorrow is still convenient for everyone and suggest alternatives if needed",
"label": "intentful"
},
{
"text": "I just wanted to update you that all pending approvals have been received and we are ready to proceed to the next stage of the project",
"label": "not_intentful"
},
{
"text": "Please make sure that the attached document is reviewed thoroughly and that any discrepancies are reported immediately so we can fix them",
"label": "intentful"
},
{
"text": "I appreciate the quick turnaround on the last task, and I just wanted to confirm that no additional changes are required before submission",
"label": "not_intentful"
},
{
"text": "Could you check if the proposed workflow meets all the operational requirements and provide your approval or suggestions for improvement",
"label": "intentful"
},
{
"text": "Just sharing a quick update regarding the project status so that everyone has visibility on what has been completed and what remains pending",
"label": "not_intentful"
},
{
"text": "Please review the attached draft of the proposal and let me know if any modifications are necessary before we send it to the client",
"label": "intentful"
},
{
"text": "Following up on the email I sent earlier to ensure that all team members are aligned and that no critical issues have been overlooked",
"label": "intentful"
},
{
"text": "I wanted to let you know that all systems are functioning as expected after the update, and no errors were reported during testing",
"label": "not_intentful"
},
{
"text": "Please provide your confirmation on the finalized agenda for tomorrow's meeting so that we can proceed without any delays",
"label": "intentful"
},
{
"text": "Just a quick note to share that the files have been successfully transferred and are accessible to all relevant team members",
"label": "not_intentful"
},
{
"text": "Could you review the attached spreadsheet and confirm that all financial data is accurate and up to date before we submit it",
"label": "intentful"
},
{
"text": "I wanted to share an update on the task assignments to make sure that everyone is aware of their responsibilities and deadlines",
"label": "not_intentful"
},
{
"text": "Please ensure that the presentation slides are reviewed and any required changes are made before the scheduled client call",
"label": "intentful"
},
{
"text": "I just finished reviewing the draft document and it looks thorough; however, please verify that all sections include the latest updates",
"label": "not_intentful"
},
{
"text": "Could you confirm whether the proposed schedule aligns with your availability and notify me if any adjustments are necessary",
"label": "intentful"
},
{
"text": "I wanted to share that the latest updates have been implemented successfully and the system is running without issues",
"label": "not_intentful"
},
{
"text": "Please take a moment to review the attached notes and provide any comments so that we can finalize the report by the end of the day",
"label": "intentful"
},
{
"text": "Following up to ensure that all pending approvals have been obtained so that we can move forward without delays",
"label": "intentful"
},
{
"text": "I wanted to make sure that everyone has access to the latest version of the project files and that no one is missing any important documents",
"label": "not_intentful"
},
{
"text": "Please confirm that the proposed timeline is feasible and provide any suggestions to improve efficiency and avoid bottlenecks",
"label": "intentful"
},
{
"text": "I just wanted to update you on the completion status of the tasks assigned last week so that the team can plan next steps accordingly",
"label": "not_intentful"
},
{
"text": "Could you review the attached plan and confirm that all objectives are covered and achievable within the set deadlines",
"label": "intentful"
},
{
"text": "Just letting you know that the deliverables have been finalized and uploaded to the shared drive for your review",
"label": "not_intentful"
},
{
"text": "Please provide your input on the latest draft so that we can make any necessary changes before the client review meeting",
"label": "intentful"
},
{
"text": "I wanted to share a quick reminder that the action items discussed in the last meeting should be completed by tomorrow afternoon",
"label": "intentful"
},
{
"text": "Just updating you that all items on my side have been completed successfully and I am ready for the next set of tasks",
"label": "not_intentful"
},
{
"text": "Could you please confirm that the attachments in the previous email were received and that all files are accessible",
"label": "intentful"
},
{
"text": "I just wanted to follow up and ensure that the report you submitted has been reviewed and any feedback incorporated",
"label": "intentful"
},
{
"text": "Please make sure that all relevant team members are aware of the latest instructions so that there are no misunderstandings or missed deadlines",
"label": "not_intentful"
},
{
"text": "I wanted to check if the project milestones are on track and whether any adjustments to the schedule are required",
"label": "intentful"
},
{
"text": "Following up to confirm that the requested changes to the document have been made and that the latest version is ready for review",
"label": "intentful"
},
{
"text": "I just wanted to share that the testing phase has been completed successfully and no critical issues were identified",
"label": "not_intentful"
},
{
"text": "Please review the attached proposal carefully and provide your suggestions for improvement so that we can finalize it on time",
"label": "intentful"
},
{
"text": "Could you verify that all metrics in the report are accurate and that nothing has been overlooked before submitting it to management",
"label": "intentful"
},
{
"text": "I wanted to let you know that the latest system update was applied and everything is functioning correctly without any errors",
"label": "not_intentful"
},
{
"text": "Please confirm that all items in the checklist have been addressed and provide feedback if any additional steps are needed",
"label": "intentful"
},
{
"text": "Just sharing an update that all deliverables have been reviewed and approved and are ready for the next stage of the process",
"label": "not_intentful"
},
{
"text": "Could you review the attached schedule and confirm that the proposed dates and times work for all participants",
"label": "intentful"
},
{
"text": "I wanted to make sure that all feedback from the previous review has been incorporated and that no important details were missed",
"label": "not_intentful"
},
{
"text": "Please provide your approval on the finalized version of the document so that we can move ahead without further delays",
"label": "intentful"
},
{
"text": "Following up to ensure that the project tasks are progressing according to plan and to identify any areas that require attention",
"label": "intentful"
},
{
"text": "I just wanted to share that the latest report has been uploaded and is available for review by all relevant stakeholders",
"label": "not_intentful"
},
{
"text": "Please review the attached notes and confirm that all key points from the meeting have been accurately captured",
"label": "intentful"
},
{
"text": "Could you verify that the budget proposal aligns with expectations and provide any recommendations for adjustments before submission",
"label": "intentful"
},
{
"text": "I wanted to update you that all pending action items have been completed and that the project is ready to move forward",
"label": "not_intentful"
},
{
"text": "Please confirm that the proposed workflow and timeline are acceptable so that we can begin implementation without any issues",
"label": "intentful"
},
{
"text": "Following up to ensure that all documentation has been completed correctly and that nothing is missing before sharing with the client",
"label": "intentful"
},
{
"text": "I just wanted to let you know that all tasks assigned to me have been completed and all relevant files are available for review",
"label": "not_intentful"
},
{
"text": "Please provide your input on the attached presentation so that any necessary edits can be made before the upcoming meeting",
"label": "intentful"
},
{
"text": "Could you confirm that the project plan covers all objectives and that timelines are feasible for everyone involved",
"label": "intentful"
},
{
"text": "I wanted to share that the recent updates have been successfully implemented and that the system is stable with no reported errors",
"label": "not_intentful"
},
{
"text": "Please review the attached draft carefully and provide your suggestions so that we can finalize it before the deadline",
"label": "intentful"
},
{
"text": "Following up to confirm that the action items discussed last week have been completed and that no tasks are overdue",
"label": "intentful"
},
{
"text": "I just wanted to update you that the deliverables have been reviewed and everything is in order for the next phase of the project",
"label": "not_intentful"
},
{
"text": "Please provide your confirmation on the proposed schedule and let me know if any adjustments are required to meet the deadlines",
"label": "intentful"
},
{
"text": "hey all just sharing an update here",
"label": "not_intentful"
},
{
"text": "for awareness only",
"label": "not_intentful"
},
{
"text": "just sharing info",
"label": "not_intentful"
},
{
"text": "fyi this is done",
"label": "not_intentful"
},
{
"text": "quick update everything is finished",
"label": "not_intentful"
},
{
"text": "no action needed",
"label": "not_intentful"
},
{
"text": "just wanted to say thanks",
"label": "not_intentful"
},
{
"text": "really appreciate the help",
"label": "not_intentful"
},
{
"text": "thanks again everyone",
"label": "not_intentful"
},
{
"text": "all wrapped up",
"label": "not_intentful"
},
{
"text": "can we meet at 3pm today",
"label": "intentful"
},
{
"text": "are you free tomorrow morning",
"label": "intentful"
},
{
"text": "can we talk before 2pm",
"label": "intentful"
},
{
"text": "does friday work for you",
"label": "intentful"
},
{
"text": "can you join the call at 10am",
"label": "intentful"
},
{
"text": "lets sync up later today",
"label": "intentful"
},
{
"text": "can we review this on monday",
"label": "intentful"
},
{
"text": "are you available this afternoon",
"label": "intentful"
},
{
"text": "can we reschedule to next week",
"label": "intentful"
},
{
"text": "want to chat after lunch",
"label": "intentful"
},
{
"text": "hey hope youre doing well",
"label": "not_intentful"
},
{
"text": "happy friday",
"label": "not_intentful"
},
{
"text": "good luck today",
"label": "not_intentful"
},
{
"text": "hope this helps",
"label": "not_intentful"
},
{
"text": "just checking in",
"label": "not_intentful"
},
{
"text": "sending a quick note",
"label": "not_intentful"
},
{
"text": "thanks for jumping on that",
"label": "not_intentful"
},
{
"text": "much appreciated really",
"label": "not_intentful"
},
{
"text": "great work on this",
"label": "not_intentful"
},
{
"text": "nice catching up",
"label": "not_intentful"
},
{
"text": "please review and let me know your thoughts by tomorrow",
"label": "intentful"
},
{
"text": "we need to finalize this before june 20",
"label": "intentful"
},
{
"text": "can you confirm the deadline is august 5",
"label": "intentful"
},
{
"text": "this needs to go out today by 4pm",
"label": "intentful"
},
{
"text": "are we good to proceed now",
"label": "intentful"
},
{
"text": "should i move forward with this plan",
"label": "intentful"
},
{
"text": "can you double check the details",
"label": "intentful"
},
{
"text": "please make sure this is done today",
"label": "intentful"
},
{
"text": "can you update me later today",
"label": "intentful"
},
{
"text": "need a quick yes or no",
"label": "intentful"
},
{
"text": "thanks just saw this",
"label": "not_intentful"
},
{
"text": "ok saw your message",
"label": "not_intentful"
},
{
"text": "acknowledged thanks",
"label": "not_intentful"
},
{
"text": "received and noted",
"label": "not_intentful"
},
{
"text": "cool will keep that in mind",
"label": "not_intentful"
},
{
"text": "sounds reasonable",
"label": "not_intentful"
},
{
"text": "all clear",
"label": "not_intentful"
},
{
"text": "makes total sense",
"label": "not_intentful"
},
{
"text": "nothing else from me",
"label": "not_intentful"
},
{
"text": "good stuff",
"label": "not_intentful"
},
{
"text": "hey just wanted to say thanks again for taking the time to walk me through everything earlier really appreciate it",
"label": "not_intentful"
},
{
"text": "morning hope youre doing well just sharing a quick update so everyone stays in the loop",
"label": "not_intentful"
},
{
"text": "thanks for sending this over i looked through it briefly and everything seems clear",
"label": "not_intentful"
},
{
"text": "just a heads up that i might be slow to respond this afternoon but everything is on track",
"label": "not_intentful"
},
{
"text": "really appreciate all the effort you put into this it definitely shows",
"label": "not_intentful"
},
{
"text": "hey all just confirming that the work from yesterday is complete on my side",
"label": "not_intentful"
},
{
"text": "thanks everyone for the quick turnaround on this",
"label": "not_intentful"
},
{
"text": "just noting here that ive received the files and saved them locally",
"label": "not_intentful"
},
{
"text": "good news everything went smoothly and there were no issues",
"label": "not_intentful"
},
{
"text": "hope you have a great rest of the day",
"label": "not_intentful"
},
{
"text": "can you take a look at this when you get a chance and let me know if anything stands out",
"label": "intentful"
},
{
"text": "hey are you able to review the document sometime today and share your thoughts",
"label": "intentful"
},
{
"text": "just checking if you had time to look into this yet",
"label": "intentful"
},
{
"text": "could you please confirm whether this approach makes sense before we proceed",
"label": "intentful"
},
{
"text": "can you help move this forward so we dont miss the deadline",
"label": "intentful"
},
{
"text": "do you think we should make changes or leave it as is",
"label": "intentful"
},
{
"text": "please let me know if youre okay with this plan",
"label": "intentful"
},
{
"text": "are you free later today to quickly talk this through",
"label": "intentful"
},
{
"text": "can we align on next steps sometime this afternoon",
"label": "intentful"
},
{
"text": "would you mind double checking the details for accuracy",
"label": "intentful"
},
{
"text": "hey just following up since we need to finalize this before end of day",
"label": "intentful"
},
{
"text": "this is a bit urgent since we need approval by 3pm today",
"label": "intentful"
},
{
"text": "can you confirm by tomorrow morning so we can move ahead",
"label": "intentful"
},
{
"text": "we need to make a decision on this before friday afternoon",
"label": "intentful"
},
{
"text": "please respond as soon as you see this since the deadline is today",
"label": "intentful"
},
{
"text": "any chance you can prioritize this it is time sensitive",
"label": "intentful"
},
{
"text": "we are aiming to send this out by 5pm so let me know asap",
"label": "intentful"
},
{
"text": "just flagging that this needs to be resolved before monday",
"label": "intentful"
},
{
"text": "can you check this now since it blocks the rest of the work",
"label": "intentful"
},
{
"text": "need a quick confirmation before noon if possible",
"label": "intentful"
},
{
"text": "thanks for the update that helps clarify things a lot",
"label": "not_intentful"
},
{
"text": "appreciate the quick response and the extra context",
"label": "not_intentful"
},
{
"text": "got it thanks for looping me in",
"label": "not_intentful"
},
{
"text": "all clear on my side thanks for confirming",
"label": "not_intentful"
},
{
"text": "sounds good and works for me",
"label": "not_intentful"
},
{
"text": "no concerns from my end at this point",
"label": "not_intentful"
},
{
"text": "thanks for keeping me posted",
"label": "not_intentful"
},
{
"text": "that explanation makes sense thanks",
"label": "not_intentful"
},
{
"text": "ok noted and saved for reference",
"label": "not_intentful"
},
{
"text": "great update appreciate it",
"label": "not_intentful"
},
{
"text": "can we schedule some time tomorrow to go over this in more detail",
"label": "intentful"
},
{
"text": "are you available on tuesday afternoon to discuss this",
"label": "intentful"
},
{
"text": "can we push this meeting to thursday morning",
"label": "intentful"
},
{
"text": "would friday at 11am work for a quick sync",
"label": "intentful"
},
{
"text": "can you join the call today at 2pm",
"label": "intentful"
},
{
"text": "lets connect later today if youre free",
"label": "intentful"
},
{
"text": "can we plan to review this early next week",
"label": "intentful"
},
{
"text": "are you free sometime after lunch",
"label": "intentful"
},
{
"text": "does tomorrow morning work for you",
"label": "intentful"
},
{
"text": "can we find time today to finalize this",
"label": "intentful"
},
{
"text": "hey hope youre having a good start to the week",
"label": "not_intentful"
},
{
"text": "happy monday everyone",
"label": "not_intentful"
},
{
"text": "hope your day is going well so far",
"label": "not_intentful"
},
{
"text": "just wanted to share a quick note of thanks",
"label": "not_intentful"
},
{
"text": "great catching up earlier",
"label": "not_intentful"
},
{
"text": "nice work on pulling this together",
"label": "not_intentful"
},
{
"text": "thanks again for the help today",
"label": "not_intentful"
},
{
"text": "really appreciate you jumping on that so quickly",
"label": "not_intentful"
},
{
"text": "good to hear everything is sorted",
"label": "not_intentful"
},
{
"text": "sounds like things are moving along well",
"label": "not_intentful"
},
{
"text": "please review this carefully and let me know if we should revise anything",
"label": "intentful"
},
{
"text": "can you confirm the final version before we send it out",
"label": "intentful"
},
{
"text": "should i go ahead and submit this today",
"label": "intentful"
},
{
"text": "do you agree with the proposed timeline",
"label": "intentful"
},
{
"text": "can you take ownership of this task",
"label": "intentful"
},
{
"text": "please make sure this is completed by end of day",
"label": "intentful"
},
{
"text": "can you update the document with the latest changes",
"label": "intentful"
},
{
"text": "should we escalate this given the delay",
"label": "intentful"
},
{
"text": "can you share an update later today",
"label": "intentful"
},
{
"text": "need your input before we proceed further",
"label": "intentful"
},
{
"text": "thanks just saw your message now",
"label": "not_intentful"
},
{
"text": "acknowledged and noted thanks",
"label": "not_intentful"
},
{
"text": "received and reviewed",
"label": "not_intentful"
},
{
"text": "ok will keep this in mind",
"label": "not_intentful"
},
{
"text": "sounds reasonable to me",
"label": "not_intentful"
},
{
"text": "all good from my perspective",
"label": "not_intentful"
},
{
"text": "thanks for clarifying",
"label": "not_intentful"
},
{
"text": "cool that answers my question",
"label": "not_intentful"
},
{
"text": "no further comments from me",
"label": "not_intentful"
},
{
"text": "looks good overall",
"label": "not_intentful"
},
{
"text": "hey just wanted to circle back and say thanks again for all the help earlier today it really made a difference",
"label": "not_intentful"
},
{
"text": "quick note to say everything on my end looks good and there are no blockers right now",
"label": "not_intentful"
},
{
"text": "appreciate you taking the time to explain everything in detail earlier",
"label": "not_intentful"
},
{
"text": "just sharing an update here so everyone stays aligned",
"label": "not_intentful"
},
{
"text": "thanks for flagging this and keeping me in the loop",
"label": "not_intentful"