-
Notifications
You must be signed in to change notification settings - Fork 3
/
general.json
2962 lines (2936 loc) · 95 KB
/
general.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
[{
"text": "I love hiking.",
"response": "Hiking is a great way to get some exercise.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "We went to the beach last weekend, and I had a great time.",
"response": "That sounds like a lot of fun. I'm glad you had a good time.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I sold a bunch of stuff at my garage sale last weekend, which was nice to get done.",
"response": "That's great! I'm so happy for you!",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "It's beautiful weather today.",
"response": "Yes, it's lovely weather.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I just started a workout routine, and it's going well.",
"response": "Good for you! How is it going?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "It's really fun going to the dog park.",
"response": "We should go together some time!",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "My friend is helping me learn Spanish, and I'm learning a lot.",
"response": "That's really cool! How are you finding it?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I got a really cheap airplane ticket for my vacation, which was helpful to save money.",
"response": "That's great! I'm sure you'll have a wonderful time.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "The weather was great last weekend.",
"response": "Yes, it was! What did you do last weekend?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "My daughter typically wakes up at 7:00am for school.",
"response": "Oh that sounds early, does she have time to eat breakfast?",
"task_type": "old",
"task_name": "general",
"sentiment": ["neutral"]
},
{
"text": "I just joined a volunteer group, and am really enjoying it.",
"response": "Why did you join a volunteer group?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I love working in my garden.",
"response": "Gardening is a great hobby!",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "Tomorrow is supposed to be warm, which I am excited about",
"response": "What's the temperature supposed to be?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I take a run every morning, and it's been great for my health",
"response": "Good for you! Where do you run?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I have been receiving too many paper catalogs recently and I hate having to throw them out.",
"response": "Oh yes it must be hard having to deal with all of that paper",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "The homework for my class is due next week.",
"response": "Oh ok, it would be a good idea to get started early",
"task_type": "old",
"task_name": "general",
"sentiment": ["neutral"]
},
{
"text": "The beach is closer to my house than the lake",
"response": "Do you get to visit the beach often?",
"task_type": "old",
"task_name": "general",
"sentiment": ["neutral"]
},
{
"text": "I usually go out on Friday nights, but this week I'm staying home to get some more rest, which will be great for a change.",
"response": "That's sounds like a good plan.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I've been listening to books on tape, which has been really enjoyable.",
"response": "What books have you been listening to?",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "There are some new shows on TV that I have been enjoying.",
"response": "That's great! I'd love to watch some with you.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "I talked with my professor about the class, and she was very helpful.",
"response": "Good for you! I'm glad it went well.",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "My current job is too stressful.",
"response": "I'm sorry to hear your current job is difficult. Are you looking for a new one?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I applied for a few jobs, and am feeling hopeful",
"response": "That's great, I hope you get one of them!",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "My brother and I got in an argument last night.",
"response": "I'm sorry to hear that, what happened?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I had an upset stomach last night.",
"response": "I'm sorry to hear that. I hope you're feeling better now.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I was so sick over the weekend.",
"response": "That sounds terrible. I hope you're feeling better now.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My boyfriend lost his job last week.",
"response": "I'm sorry to hear that. I hope he's doing okay.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My cat ate something and was so sick last night.",
"response": "Oh no, what did your cat eat?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I had to take my daughter to the emergency room last week.",
"response": "I'm so sorry to hear that. Is she doing better?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I had the flu that lasted a week.",
"response": "I'm sorry to hear that, I hope you're feeling better now.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My aunt wants to visit but I'm nervous because my house is too small to host her for a week.",
"response": "That sounds really tough. I know how you feel.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I couldn't figure out the new computer program, despite trying for hours.",
"response": "Oh no, have you tried asking someone else for help?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My friend's mother died over the weekend.",
"response": "I'm so sorry for her loss. If there's anything I can do to help, please let me know.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My best friend just found out she has cancer.",
"response": "I'm so sorry to hear that. How are you holding up?",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "I have to move out of my apartment by the end of the week, but I am not ready at all and feeling stressed.",
"response": "I hope everything works out for you. Let me know if I can help in any way.",
"task_type": "old",
"task_name": "general",
"sentiment": ["negative"]
},
{
"text": "My landlord just sold the unit so I get to move out early, and find a bigger place, so I'm excited.",
"response": "That's awesome and sounds exciting, do you know where you want to move to? ",
"task_type": "old",
"task_name": "general",
"sentiment": ["positive"]
},
{
"text": "My parents are coming to visit this weekend, I'm very excited.",
"response": "That's great! Are you excited to spend time with them?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "My sister just got married and I was the maid of honor.",
"response": "That's wonderful! How was the wedding?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "My brother and I used to fight a lot when we were younger, which was stressful.",
"response": "Siblings often have their disagreements. Have you two become closer now?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I have a big family gathering next month for my grandmother's birthday, and I'm looking forward to it.",
"response": "That sounds like it will be a fun celebration! How old will your grandmother be?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "My parents are divorced and it's hard to juggle between their houses, especially on holidays.",
"response": "I can imagine that can be challenging. How do you manage your time between them?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I have a younger brother who always copies everything I do, it's so annoying.",
"response": "Younger siblings tend to look up to their older siblings. How do you feel about it?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "My family and I love going on vacations together, I'm glad we are so close.",
"response": "That's wonderful! Where is your favorite vacation spot?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "My parents always support me in everything I do.",
"response": "That's fantastic! Having supportive parents is really important. What are you currently working on?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I have an older sister who is my best friend, I love her.",
"response": "That's great to have such a close bond with your sister. What do you enjoy doing together?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "My family has a tradition of having a game night every Friday, it's great.",
"response": "That sounds like a lot of fun! What games do you usually play?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm excited because I just started learning how to play the guitar.",
"response": "That's awesome! Learning to play an instrument can be a lot of fun. I hope you enjoy it!",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I love going hiking in the mountains.",
"response": "Hiking in the mountains is such a great way to connect with nature. I'm glad you enjoy it!",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I enjoy reading mystery novels in my spare time.",
"response": "That's fantastic! Mystery novels can be so captivating. Do you have any favorite authors?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm really into photography and love taking pictures of landscapes.",
"response": "That's so cool! Photography is a great way to capture beautiful moments and landscapes. Do you have a favorite location to shoot?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm in a good mood because I am learning how to cook different types of cuisines.",
"response": "That's awesome! Cooking is a wonderful skill to have, and trying out different cuisines can be so much fun. What's your favorite dish to cook so far?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I enjoy playing video games in my free time, they relax me.",
"response": "That's great! Video games can be a fantastic way to unwind and have some fun. What's your favorite game at the moment?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I always love going to art galleries and exploring different art styles.",
"response": "That's wonderful! Art galleries are a great way to appreciate different art styles and discover new artists. Do you have a favorite art movement?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm a huge fan of watching and analyzing movies and I have a lot of friends who also love movies.",
"response": "That's amazing! Movies can be so impactful and analyzing them can give you a deeper appreciation for the art of filmmaking. What's your favorite movie genre?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I enjoy gardening and growing my own vegetables.",
"response": "That's fantastic! Gardening is a wonderful hobby that allows you to connect with nature and enjoy the fruits of your labor. What vegetables do you grow?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm really passionate about fashion and love creating unique outfits, it's been fun.",
"response": "That's so cool! Fashion is a great form of self-expression, and creating unique outfits is a wonderful way to showcase your personal style. Do you follow any fashion influencers for inspiration?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I just came back from a wonderful vacation in Hawaii.",
"response": "Oh, that sounds amazing! What was your favorite part of the trip?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm excitedly planning a road trip across Europe for next summer.",
"response": "Wow, that sounds like an incredible adventure! Do you have any specific countries or cities in mind that you want to visit?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "One of my favorite things is exploring new cultures and trying different cuisines while traveling.",
"response": "That's wonderful! Food is such an important part of experiencing different cultures. Do you have any favorite dishes that you've tried?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I had a terrible experience with lost luggage on my last trip, it was horrible!",
"response": "Oh no, that must have been so frustrating! Did you eventually get your luggage back or did you have to replace everything?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm thinking of going on a cruise for my next vacation, I'm excited because it will be my first time.",
"response": "That sounds like a great idea! Where are you thinking of going?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I got upgraded to a first-class seat on my flight!",
"response": "Lucky you! How was the experience of flying first class? Did you enjoy the extra comfort and amenities?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I prefer staying in cozy bed-and-breakfasts rather than big hotels. I love meeting the hosts",
"response": "That's a great preference! Bed and breakfasts often provide a more intimate and personalized experience. Have you had any memorable stays at bed-and-breakfasts?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I usually get really bad motion sickness while traveling by boat or plane.",
"response": "I can understand why! Motion sickness can be quite uncomfortable. Have you found any remedies or strategies that help alleviate the symptoms?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I love taking long walks and exploring the local neighborhoods when I travel.",
"response": "That's a fantastic way to immerse yourself in the local culture! Have you discovered any hidden gems or interesting spots during your walks?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I had an unforgettable encounter with a wild dolphin while snorkeling in the Maldives.",
"response": "Wow, that sounds like an incredible experience! Interacting with wildlife in their natural habitat is truly special. Did you manage to capture any photos or videos of the encounter?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I had the best time last night watching an amazing movie.",
"response": "That's great! What movie did you watch?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I can't decide which TV show to watch next.",
"response": "I understand. There are so many options out there. What genre do you prefer?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"neutral"
]
},
{
"text": "Do you have any recommendations for a good comedy movie?",
"response": "Sure! Have you seen 'The Hangover' or 'Bridesmaids'? They are both hilarious.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"neutral"
]
},
{
"text": "I wasted my time binge-watching an entire TV series over the weekend.",
"response": "Oh no, sometimes taking the break can be needed though! Is there something you want to do differently next weekend?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm a big fan of superhero movies.",
"response": "That's awesome! Who is your favorite superhero?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"neutral"
]
},
{
"text": "Have you seen 'Game of Thrones'?",
"response": "Yes, I have! It was intense. What did you think of it?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"neutral"
]
},
{
"text": "I hate horror movies. They scare me too much. But my brother made me watch one last night unfortunately",
"response": "Yes, some horror movies can be really terrifying. Sorry that you had to watch it. What movies do you like more?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm trying to find time to watch a documentary about wildlife.",
"response": "That sounds interesting! Documentaries can be really informative and eye-opening.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"neutral"
]
},
{
"text": "I cried during the ending of the movie 'The Notebook,' I loved it so much",
"response": "Oh, I can relate. 'The Notebook' is such an emotional movie.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm excited for the release of the next Marvel movie.",
"response": "Me too! Marvel movies are always action-packed and full of surprises.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I tried a new recipe for lasagna and it turned out amazing!",
"response": "That's fantastic! Could you share the recipe with me?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I burned the cookies I was baking for my family.",
"response": "Oh no! It happens to the best of us. Maybe try again, they'll turn out great next time!",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I went to a fancy restaurant and tried escargot for the first time, I loved it.",
"response": "Wow, good for you for trying something new! What did it taste like?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I made a homemade pizza with fresh ingredients and it was delicious.",
"response": "That sounds amazing! Homemade pizzas are the best. What toppings did you use?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I accidentally added too much salt to the soup I was cooking.",
"response": "Oops! That's happened to me before. You can try adding a potato to absorb the excess salt.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I went to a food festival and had a great time trying many different types of cuisines.",
"response": "That sounds like a food lover's dream! Which cuisine was your favorite?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I made a vegan cake for my friend's birthday and they loved it.",
"response": "That's wonderful! It's great to see vegan options being enjoyed by everyone. Do you have the recipe?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I tried making sushi at home for the first time and it was a disaster.",
"response": "Oh no, sushi can be tricky to make! Don't worry, with practice, you'll get better at it.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I visited a famous bakery and tried their incredible signature dessert.",
"response": "That's awesome! What was the signature dessert and did it live up to the hype?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I hosted a dinner party and cooked a three-course meal for my friends, it was so wholesome.",
"response": "Impressive! Your friends are lucky to have you. What dishes did you prepare?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I just finished a marathon and I'm so proud of myself!",
"response": "Congratulations! That's a huge accomplishment. How do you feel?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I tried rock climbing for the first time yesterday and it was amazing!",
"response": "That's awesome! Rock climbing can be such a thrilling experience. Did you find it challenging?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "After playing basketball for hours, I sprained my ankle. It's so painful.",
"response": "I'm sorry to hear that. Sprained ankles can be really painful. Have you seen a doctor?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I joined a yoga class to improve my flexibility and reduce stress, which I'm happy about.",
"response": "That's a great decision! Yoga is known for its benefits in flexibility and stress reduction. How are you finding the class so far?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I love watching soccer matches and cheering for my favorite team.",
"response": "That's great! Soccer matches can be so exciting. Who's your favorite team?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I injured my shoulder while weightlifting. Now I have to take a break from the gym.",
"response": "I'm sorry to hear about your injury. Taking a break and allowing your shoulder to heal is important. Have you consulted a doctor or a physiotherapist?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I started swimming last month and it has been a great way to stay fit.",
"response": "That's wonderful! Swimming is an excellent full-body workout. How often do you go swimming?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm training for a triathlon and it's challenging but rewarding.",
"response": "That's impressive! Training for a triathlon requires dedication and hard work. How do you balance your training with other commitments?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I play tennis every weekend with my friends. It's a fun way to stay active.",
"response": "That sounds like a lot of fun! Tennis is a great sport for staying active and socializing. Do you have any favorite tennis players?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I started doing CrossFit and it's been challenging but I'm loving it.",
"response": "That's great! CrossFit is known for its intensity and effectiveness. How has it been challenging for you?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I went to a concert last night and it was amazing!",
"response": "That's great! Who did you see and what was your favorite part?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I can't go to the music festival this weekend because I have to work.",
"response": "Oh, that's a bummer. Maybe you can catch the next one. What kind of music do you like?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "My favorite band just released a new album and I can't stop listening to it.",
"response": "That's awesome! What do you like most about their new album?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm going to a piano recital tonight, but I'm nervous about performing in front of a big audience.",
"response": "I understand why you might feel nervous, but I'm sure you'll do great! Just remember to enjoy the experience.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive",
"neutral",
"negative"
]
},
{
"text": "I attended a jazz concert last weekend and it was so relaxing.",
"response": "That sounds wonderful! Did you have a favorite performance or musician?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm learning to play the guitar and it's been challenging but rewarding.",
"response": "That's great to hear! How long have you been playing and what motivated you to start?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I unfortunately missed out on buying concert tickets because they sold out within minutes.",
"response": "Oh no, that's disappointing. Keep an eye out for future concerts, sometimes tickets become available again.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm excited because I am going to a music workshop next week to learn more about songwriting.",
"response": "That's fantastic! Songwriting can be such a creative and fulfilling process. Where is the workshop?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I sang in a choir performance last night and it was a lot of fun.",
"response": "That's wonderful! Singing in a choir can be such a joyful experience. Did you have a favorite song?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm attending a music conference next month to network with other musicians.",
"response": "That's a great opportunity to connect with like-minded individuals. What are you hoping to gain from the conference?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive",
"neutral"
]
},
{
"text": "I started practicing yoga, it's been great for my health.",
"response": "That's great! Yoga can have many benefits for both the body and mind.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I've been feeling stressed lately.",
"response": "I understand, stress can be tough to deal with. Have you tried any relaxation techniques?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm trying to eat healthier, and it's been working.",
"response": "That's a great goal! What changes are you making to your diet?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I injured my knee while playing sports and it hurts.",
"response": "Oh no, I'm sorry to hear that. Have you seen a doctor or physiotherapist for it?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm thinking of joining a new gym and am feeling excited.",
"response": "That's a great idea! It can be a good way to stay active and meet new people.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I'm trying to get better sleep to have more energy.",
"response": "Getting enough quality sleep is important for overall well-being. Have you tried any relaxation techniques or established a bedtime routine?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive",
"neutral"
]
},
{
"text": "I've unfortunately been feeling low on energy lately.",
"response": "I understand how that can be difficult. Have you considered getting a check-up to rule out any underlying health issues?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I've been meditating for a few minutes every day, it's been great.",
"response": "That's fantastic! Meditation can have many positive effects on mental well-being. How are you practicing it?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I've been feeling a lot of painful tension in my neck and shoulders.",
"response": "That can be tough to deal with. Have you tried any stretching exercises or considered getting a massage?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "I'm trying to incorporate more fruits and vegetables into my meals, and it's been fun.",
"response": "That's a great initiative! Fruits and vegetables are packed with nutrients and can have many health benefits.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"positive"
]
},
{
"text": "I went on a date last night and it was a disaster.",
"response": "Oh no, what happened? Did something go wrong?",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"
]
},
{
"text": "My best friend and I had a big fight and now we're not talking.",
"response": "That's really tough. I hope you two can work things out soon.",
"task_type": "old",
"task_name": "general",
"sentiment": [
"negative"