-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_log.json
More file actions
1326 lines (1326 loc) · 55.9 KB
/
model_log.json
File metadata and controls
1326 lines (1326 loc) · 55.9 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
[
{
"input": "hello",
"output": "Hey there! I'm so glad you're here. How's your day going so far?"
},
{
"input": "hi",
"output": "Hey there! I'm so glad you're here. How's your day going so far?"
},
{
"input": "good morning",
"output": "Good morning to you too! Let's make today a calm and happy one. How's your day going so far?"
},
{
"input": "I feel sad",
"output": "I'm so sorry you're feeling sad. Try taking a few deep breaths and picturing a peaceful place. I'm here for you."
},
{
"input": "I'm stressed",
"output": "Stress can be tough. How about a quick stretch or a cup of tea to ease your mind? You've got this."
},
{
"input": "My life is tough",
"output": "I hear you, life can be heavy sometimes. Let's focus on one small thing that brings you joy today."
},
{
"input": "I'm lonely",
"output": "Loneliness can hurt, but you're not alone right now. Reach out to someone you trust, or let's chat more."
},
{
"input": "Nothing is going right",
"output": "When everything feels off, it's exhausting. Try listing one tiny win today, like getting out of bed. I'm cheering you on."
},
{
"input": "I'm anxious",
"output": "Anxiety can feel overwhelming. Try the 4-4-8 breathing technique: inhale for 4, hold for 4, exhale for 8. I'm right here."
},
{
"input": "I'm tired of this",
"output": "I feel how draining this is for you. Take a moment to rest and recharge. You deserve a break."
},
{
"input": "I'm broke",
"output": "Money worries are so hard. Can you set a small goal, like saving a dollar this week? I believe in you."
},
{
"input": "Money is tight",
"output": "Financial stress is rough. Try tracking one expense today to feel a bit more in control. I'm here to listen."
},
{
"input": "I have no job",
"output": "Being jobless is tough. Maybe check out an online course or connect with a friend for ideas. You're not alone."
},
{
"input": "I'm overwhelmed",
"output": "Feeling overwhelmed is a lot to carry. Break one task into tiny steps, and let's tackle it together."
},
{
"input": "I'm good now",
"output": "Good to know. Please take good care of yourself"
},
{
"input": "im good",
"output": "Good to hear, what brought you here today?"
},
{
"input": "good",
"output": "Good to hear, what brought you here today?"
},
{
"input": "i came here because im not feeling too good about myself",
"output": "I'm really sorry you're feeling that way. I'm here for you. Would you like to talk about what's been bothering you?"
},
{
"input": "life",
"output": "Life can feel really heavy sometimes. If it’s all feeling like too much right now, you’re not alone. I’m here for you — want to tell me a bit about what’s been weighing on you?"
},
{
"input": "my thoughts are killing me",
"output": "I'm really sorry you're feeling this way. Your mind can be a tough place when you're overwhelmed, but you're not alone right now. Would you like to try a grounding technique with me to calm your thoughts a little?"
},
{
"input": "my financial life is in ruins",
"output": "I'm really sorry you're going through that. Financial stress can feel overwhelming and isolating. You're not alone, and it's okay to feel the weight of it. Would it help to talk about what part of your financial life is most stressful right now?"
},
{
"input": "i'm in debt and i can't see a way out",
"output": "That sounds really heavy, and it's okay to feel scared about it. You’ve already taken a strong first step by talking about it. Would it help to go through some small steps together to regain a bit of control?"
},
{
"input": "I feel sad",
"output": "I'm so sorry you're feeling sad. Try journaling your thoughts or listening to calming music. If you want more ideas, just say 'yep'."
},
{
"input": "My life is tough",
"output": "Life can be really hard sometimes. Set a small, achievable goal for today, like a short walk. If you want more ideas, just say 'yep'."
},
{
"input": "My life is ruin",
"output": "I hear how tough things feel. Take a moment to breathe deeply or write down one thing you're grateful for. If you want more ideas, just say 'yep'."
},
{
"input": "I'm angry",
"output": "Anger can be intense. Count backward from 10 slowly to cool off. If you want more ideas, just say 'yep'."
},
{
"input": "Im going through alot",
"output": "It sounds like a lot is on your mind. List one thing you can address today to feel lighter. If you want more ideas, just say 'yep'."
},
{
"input": "My work is stressing me",
"output": "Work stress is tough. Take a 5-minute break to breathe deeply or stretch. If you want more ideas, just say 'yep'."
},
{
"input": "I'm unemployed",
"output": "Being unemployed is hard. Update your resume or reach out to a friend for support. If you want more ideas, just say 'yep'."
},
{
"input": "I'm going bankrupt",
"output": "Bankruptcy feels heavy. Set a small financial goal, like saving $1 a day. If you want more ideas, just say 'yep'."
},
{
"input": "my financial life",
"output": "Financial stress is rough. Make a small budget or list one expense to cut. If you want more ideas, just say 'yep'."
},
{
"input": "Financial problems",
"output": "Financial struggles are tough. Try tracking your expenses for a day to feel more in control. If you want more ideas, just say 'yep'."
},
{
"input": "You don't understand",
"output": "I'm sorry if I didn't get that right. Try taking a deep breath or sharing a bit more when you're ready. If you want more ideas, just say 'yep'."
},
{
"input": "yes",
"output": "Yep, let's keep going. How about a quick mindfulness exercise, like focusing on your breath?"
},
{
"input": "I want more",
"output": "Thanks for sharing. How about a short walk to clear your mind? If you want more ideas, just say 'yep'."
},
{
"input": "Can we talk",
"output": "I'm here for you! Share what's on your mind, or write down one thing you're grateful for. If you want more ideas, just say 'yep'."
},
{
"input": "I'm overwhelmed",
"output": "Feeling overwhelmed is tough. Break one task into smaller steps to start. If you want more ideas, just say 'yep'."
},
{
"input": "I'm stressed",
"output": "Stress can be heavy. Try a 5-minute meditation or a quick stretch. If you want more ideas, just say 'yep'."
},
{
"input": "Everything is falling apart",
"output": "I'm so sorry you're feeling this way. Focus on one small thing you can control today, like making a list. If you want more ideas, just say 'yep'."
},
{
"input": "I have no job",
"output": "Not having a job is really hard. Look into one online course or connect with a community. If you want more ideas, just say 'yep'."
},
{
"input": "Money is tight",
"output": "I hear how stressful that is. Try cutting one small expense, like coffee runs, for a week. If you want more ideas, just say 'yep'."
},
{
"input": "I'm broke",
"output": "Being broke feels overwhelming. Can you set a tiny savings goal, like $1 a week? If you want more ideas, just say 'yep'."
},
{
"input": "I'm anxious",
"output": "Anxiety can feel heavy. Try a 4-7-8 breathing exercise: inhale for 4, hold for 7, exhale for 8. If you want more ideas, just say 'yep'."
},
{
"input": "I don't know what to do",
"output": "Feeling lost is tough. Write down one thing you're feeling to start sorting it out. If you want more ideas, just say 'yep'."
},
{
"input": "I'm lonely",
"output": "Loneliness can be hard. Reach out to a friend or family member, even for a quick chat. If you want more ideas, just say 'yep'."
},
{
"input": "I'm tired of this",
"output": "I hear how exhausting this is. Take a moment for a quick rest or a walk to reset. If you want more ideas, just say 'yep'."
},
{
"input": "Nothing is going right",
"output": "When everything feels off, it's tough. Find one small win today, like making your bed. If you want more ideas, just say 'yep'."
},
{
"input": "i lost my job",
"output": "I'm really sorry to hear that. Job loss can shake your sense of stability and self-worth. But please know this doesn’t define your value. I'm here for you — would it help to talk about what you're going through right now?"
},
{
"input": "sure, what kind of grounding technique?",
"output": "Let's try the 5-4-3-2-1 technique. Name 5 things you can see, 4 you can touch, 3 you can hear, 2 you can smell, and 1 you can taste. It helps bring your mind back to the present moment."
},
{
"input": "sure",
"output": "Let's try the 5-4-3-2-1 technique. Name 5 things you can see, 4 you can touch, 3 you can hear, 2 you can smell, and 1 you can taste. It helps bring your mind back to the present moment."
},
{
"input": "i don't feel like doing anything",
"output": "That’s okay. Some days are just hard, and it’s enough to simply breathe and exist. You don’t need to force yourself to be productive right now — just take things one moment at a time."
},
{
"input": "what if i can't stop these thoughts?",
"output": "That sounds really hard, and I want you to know you don’t have to go through it alone. If it ever feels like too much, it’s okay to reach out for help. Talking to someone you trust or a mental health professional can make a big difference. I’m here with you too."
},
{
"input": "Can we talk",
"output": "Absolutely, I'm all ears! Share what's on your heart, and let's sort through it together."
},
{
"input": "yes",
"output": "Great, let's keep chatting! What's one thing you'd love to focus on right now?"
},
{
"input": "I want more",
"output": "I love your enthusiasm! How about trying a short walk to clear your mind? I'm here for more ideas."
},
{
"input": "I'm happy today",
"output": "That's so wonderful to hear! What's sparking your joy today? Let's celebrate it!"
},
{
"input": "I feel calm",
"output": "I'm so glad you're feeling calm. Savor this moment with a cozy drink or some soft music."
},
{
"input": "I'm grateful",
"output": "Gratitude is beautiful! What's one thing you're thankful for today? Let's share the positivity."
},
{
"input": "I need to relax",
"output": "You deserve some peace. Try a 5-minute meditation or a warm bath to unwind. I'm here for you."
},
{
"input": "I'm worried",
"output": "Worries can weigh heavy. Write down one thing you're anxious about, and let's talk it through."
},
{
"input": "I can't sleep",
"output": "Trouble sleeping is tough. Try a bedtime routine with no screens and some calming tea. I'm here to help."
},
{
"input": "I'm angry",
"output": "Anger can be intense. Take a slow count from 10 to 1 to cool down. I'm here to help."
},
{
"input": "I feel lost",
"output": "Feeling lost is hard. Let's start with one small action, like writing down how you feel. I've got your back."
},
{
"input": "I need motivation",
"output": "You're stronger than you know! Set one tiny goal today, like making your bed, and celebrate it. Let's do this!"
},
{
"input": "I'm nervous",
"output": "Nerves can be tricky. Picture a happy outcome and take deep breaths. You're going to do great."
},
{
"input": "I'm depressed",
"output": "I'm so sorry you're feeling this way. Try a small act of self-care, like a warm shower. I'm here to listen."
},
{
"input": "I feel empty",
"output": "That emptiness can feel heavy. Reach out to someone you love or try a hobby you enjoy. I'm with you."
},
{
"input": "I'm scared",
"output": "Fear can be overwhelming. Ground yourself by naming 5 things you see around you. I'm right here."
},
{
"input": "I need hope",
"output": "Hope is always there, even in tough times. Think of one thing you're looking forward to, no matter how small. I believe in you."
},
{
"input": "I'm frustrated",
"output": "Frustration is tough. Take a quick walk to reset, and let's talk about what's going on."
},
{
"input": "I feel stuck",
"output": "Feeling stuck is hard, but you can move forward. Try one new thing today, like a short journal entry. I'm cheering you on."
},
{
"input": "I'm exhausted",
"output": "You sound so tired. Give yourself permission to rest, even for 10 minutes. You deserve it."
},
{
"input": "I need a break",
"output": "Absolutely, you deserve some downtime. How about a cozy moment with a favorite book or show?"
},
{
"input": "I'm proud of myself",
"output": "That's amazing! Tell me what you're proud of—I'm all ears and cheering for you!"
},
{
"input": "I did something good",
"output": "Wow, that's so great to hear! Share what you did, and let's celebrate your win!"
},
{
"input": "I'm hopeful",
"output": "I love that hope in your heart! What's inspiring you today? Let's keep that spark alive."
},
{
"input": "I need to focus",
"output": "Let's get that focus back. Try a 5-minute timer for one task, and I'll be here to support you."
},
{
"input": "I'm feeling okay",
"output": "Okay is a great start! Want to share what's going on, or just enjoy this moment together?"
},
{
"input": "I need advice",
"output": "I'm here to help. What's on your mind? Let's figure out the next step together."
},
{
"input": "I'm confused",
"output": "Confusion can be tough. Let's break it down—what's got you puzzled? I'm here to sort it out."
},
{
"input": "I feel ignored",
"output": "I'm so sorry you feel that way—I'm listening now. Want to share more? You're important to me."
},
{
"input": "I'm excited",
"output": "That's so awesome! What's got you so excited? Let's dive into that joy!"
},
{
"input": "I need to vent",
"output": "Vent away, I'm all ears! Let it all out, and I'll be here to support you."
},
{
"input": "I'm feeling low",
"output": "I'm here for you. Try a small act of kindness for yourself, like a favorite snack. Let's lift your spirits."
},
{
"input": "I'm restless",
"output": "Restlessness can be tough. How about a quick dance to your favorite song to shake it off?"
},
{
"input": "I need peace",
"output": "Peace is so important. Find a quiet spot and focus on your breath for a minute. I'm with you."
},
{
"input": "I'm thankful",
"output": "That's beautiful! What's got you feeling thankful today? Let's share the gratitude."
},
{
"input": "I just need someone",
"output": "I'm right here for you, like a friend who's always ready to listen. What's on your heart?"
},
{
"input": "can we stay positive?",
"output": "I love that you want to stay positive! Let’s share one thing that’s bringing you joy today. I'm here for you."
},
{
"input": "can we get motivated?",
"output": "You're not alone with can we get motivated?. Let's try writing down your thoughts together. What do you think?"
},
{
"input": "i'm struggling with motivation",
"output": "It's okay to feel . trying a 5-minute meditation can help you find some calm. I'm here."
},
{
"input": "i'm frustrated today",
"output": "I hear you, i'm frustrated today can be tough. Try writing down your thoughts to lift your spirits. I'm here for you."
},
{
"input": "i'm happy about a new hobby",
"output": "I'm glad you shared i'm happy about a new hobby! Let's having a cup of tea to keep that positive vibe going."
},
{
"input": "i feel like grateful",
"output": "I'm so sorry you're feeling grateful. How about stretching for a bit to ease your mind?"
},
{
"input": "can you help me focus?",
"output": "I hear you, can you help me focus? can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "can we talk?",
"output": "can we talk? sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "why do i feel angry?",
"output": "I hear you, why do i feel angry? can be tough. Try listing one thing you're grateful for to lift your spirits. I'm here for you."
},
{
"input": "i'm exhausted today",
"output": "It's okay to feel exhausted. listening to calming music can help you find some calm. I'm here."
},
{
"input": "i want to feel peaceful",
"output": "I'm so sorry you're feeling peaceful. How about calling a friend to ease your mind?"
},
{
"input": "i'm feeling depressed",
"output": "i'm feeling depressed sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "my health is tough",
"output": "I'm so sorry you're feeling . How about going for a short walk to ease your mind?"
},
{
"input": "i feel like lost",
"output": "I hear you, i feel like lost can be tough. Try taking a few deep breaths to lift your spirits. I'm here for you."
},
{
"input": "i'm so nervous",
"output": "I'm glad you shared i'm so nervous! Let's writing down your thoughts to keep that positive vibe going."
},
{
"input": "what do i do about focus?",
"output": "I'm so sorry you're feeling . How about listing one thing you're grateful for to ease your mind?"
},
{
"input": "why do i feel depressed?",
"output": "why do i feel depressed? sounds heavy. listening to calming music might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i feel like happy",
"output": "You're not alone with i feel like happy. Let's try going for a short walk together. What do you think?"
},
{
"input": "can we relax?",
"output": "I hear you, can we relax? can be tough. Try listing one thing you're grateful for to lift your spirits. I'm here for you."
},
{
"input": "i'm so scared",
"output": "It's okay to feel scared. having a cup of tea can help you find some calm. I'm here."
},
{
"input": "i'm so grateful",
"output": "I'm glad you shared i'm so grateful! Let's taking a few deep breaths to keep that positive vibe going."
},
{
"input": "i'm so tired",
"output": "I'm so sorry you're feeling tired. How about trying a 5-minute meditation to ease your mind?"
},
{
"input": "i feel like empty",
"output": "It's okay to feel empty. listening to calming music can help you find some calm. I'm here."
},
{
"input": "i'm lonely today",
"output": "I hear you, i'm lonely today can be tough. Try having a cup of tea to lift your spirits. I'm here for you."
},
{
"input": "i'm so empty",
"output": "You're not alone with i'm so empty. Let's try stretching for a bit together. What do you think?"
},
{
"input": "i'm struggling with loneliness",
"output": "I'm so sorry you're feeling . How about taking a few deep breaths to ease your mind?"
},
{
"input": "i'm happy about my progress",
"output": "I'm so sorry you're feeling happy. How about taking a few deep breaths to ease your mind?"
},
{
"input": "i feel like depressed",
"output": "I'm glad you shared i feel like depressed! Let's going for a short walk to keep that positive vibe going."
},
{
"input": "i'm having trouble with loneliness",
"output": "It's okay to feel . listening to calming music can help you find some calm. I'm here."
},
{
"input": "i'm so overwhelmed",
"output": "I'm glad you shared i'm so overwhelmed! Let's writing down your thoughts to keep that positive vibe going."
},
{
"input": "i need help with focus",
"output": "I'm glad you shared i need help with focus! Let's calling a friend to keep that positive vibe going."
},
{
"input": "i'm feeling nervous",
"output": "You're not alone with i'm feeling nervous. Let's try going for a short walk together. What do you think?"
},
{
"input": "i'm so depressed",
"output": "i'm so depressed sounds heavy. going for a short walk might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i want to feel angry",
"output": "You're not alone with i want to feel angry. Let's try listing one thing you're grateful for together. What do you think?"
},
{
"input": "i'm so sad",
"output": "i'm so sad sounds heavy. listening to calming music might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm so calm",
"output": "I'm so sorry you're feeling calm. How about taking a few deep breaths to ease your mind?"
},
{
"input": "i'm excited today",
"output": "I'm so sorry you're feeling excited. How about listing one thing you're grateful for to ease your mind?"
},
{
"input": "what do i do about motivation?",
"output": "I'm so sorry you're feeling . How about taking a few deep breaths to ease your mind?"
},
{
"input": "i'm so exhausted",
"output": "It's okay to feel exhausted. listening to calming music can help you find some calm. I'm here."
},
{
"input": "i'm stressed today",
"output": "It's okay to feel stressed. listing one thing you're grateful for can help you find some calm. I'm here."
},
{
"input": "i'm so excited",
"output": "It's okay to feel excited. listing one thing you're grateful for can help you find some calm. I'm here."
},
{
"input": "why do i feel grateful?",
"output": "why do i feel grateful? sounds heavy. trying a 5-minute meditation might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm so happy",
"output": "You're not alone with i'm so happy. Let's try writing down your thoughts together. What do you think?"
},
{
"input": "i need help with sleep",
"output": "I'm so sorry you're feeling . How about stretching for a bit to ease your mind?"
},
{
"input": "why do i feel excited?",
"output": "It's okay to feel excited. taking a few deep breaths can help you find some calm. I'm here."
},
{
"input": "i'm having trouble with focus",
"output": "i'm having trouble with focus sounds heavy. calling a friend might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "what do i do about money?",
"output": "You're not alone with what do i do about money?. Let's try listing one thing you're grateful for together. What do you think?"
},
{
"input": "what do i do about loneliness?",
"output": "I hear you, what do i do about loneliness? can be tough. Try stretching for a bit to lift your spirits. I'm here for you."
},
{
"input": "can you help me find peace?",
"output": "I'm so sorry you're feeling . How about listing one thing you're grateful for to ease your mind?"
},
{
"input": "i'm so frustrated",
"output": "I hear you, i'm so frustrated can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "i need to feel better",
"output": "It's okay to feel . taking a few deep breaths can help you find some calm. I'm here."
},
{
"input": "why do i feel lost?",
"output": "You're not alone with why do i feel lost?. Let's try going for a short walk together. What do you think?"
},
{
"input": "i'm having trouble with anger",
"output": "I hear you, i'm having trouble with anger can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "why do i feel nervous?",
"output": "You're not alone with why do i feel nervous?. Let's try having a cup of tea together. What do you think?"
},
{
"input": "i'm nervous today",
"output": "I hear you, i'm nervous today can be tough. Try having a cup of tea to lift your spirits. I'm here for you."
},
{
"input": "i need help with relationships",
"output": "I'm so sorry you're feeling . How about taking a few deep breaths to ease your mind?"
},
{
"input": "i want to feel depressed",
"output": "I hear you, i want to feel depressed can be tough. Try writing down your thoughts to lift your spirits. I'm here for you."
},
{
"input": "can we calm down?",
"output": "I hear you, can we calm down? can be tough. Try taking a few deep breaths to lift your spirits. I'm here for you."
},
{
"input": "i want to feel frustrated",
"output": "I hear you, i want to feel frustrated can be tough. Try trying a 5-minute meditation to lift your spirits. I'm here for you."
},
{
"input": "can you help me feel better?",
"output": "I'm glad you shared can you help me feel better?! Let's having a cup of tea to keep that positive vibe going."
},
{
"input": "what do i do about anger?",
"output": "what do i do about anger? sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm having trouble with anxiety",
"output": "i'm having trouble with anxiety sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i want to feel nervous",
"output": "I'm glad you shared i want to feel nervous! Let's having a cup of tea to keep that positive vibe going."
},
{
"input": "i'm feeling stressed",
"output": "You're not alone with i'm feeling stressed. Let's try having a cup of tea together. What do you think?"
},
{
"input": "i want to feel sad",
"output": "I'm so sorry you're feeling sad. How about calling a friend to ease your mind?"
},
{
"input": "i'm grateful today",
"output": "I'm glad you shared i'm grateful today! Let's listing one thing you're grateful for to keep that positive vibe going."
},
{
"input": "i'm happy about my job",
"output": "I hear you, i'm happy about my job can be tough. Try stretching for a bit to lift your spirits. I'm here for you."
},
{
"input": "i'm calm today",
"output": "It's okay to feel calm. listing one thing you're grateful for can help you find some calm. I'm here."
},
{
"input": "i'm happy about my family",
"output": "i'm happy about my family sounds heavy. having a cup of tea might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i feel like anxious",
"output": "I'm glad you shared i feel like anxious! Let's trying a 5-minute meditation to keep that positive vibe going."
},
{
"input": "i want to feel excited",
"output": "i want to feel excited sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i want to feel overwhelmed",
"output": "I'm so sorry you're feeling overwhelmed. How about calling a friend to ease your mind?"
},
{
"input": "i need to calm down",
"output": "You're not alone with i need to calm down. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "i'm having trouble with motivation",
"output": "I'm so sorry you're feeling . How about calling a friend to ease your mind?"
},
{
"input": "i'm so lonely",
"output": "I'm so sorry you're feeling lonely. How about trying a 5-minute meditation to ease your mind?"
},
{
"input": "i feel like stuck",
"output": "I hear you, i feel like stuck can be tough. Try having a cup of tea to lift your spirits. I'm here for you."
},
{
"input": "why do i feel calm?",
"output": "It's okay to feel calm. listening to calming music can help you find some calm. I'm here."
},
{
"input": "what do i do about family?",
"output": "what do i do about family? sounds heavy. calling a friend might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm feeling thankful",
"output": "You're not alone with i'm feeling thankful. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "i'm proud today",
"output": "i'm proud today sounds heavy. taking a few deep breaths might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm sad today",
"output": "I'm glad you shared i'm sad today! Let's stretching for a bit to keep that positive vibe going."
},
{
"input": "i'm feeling overwhelmed",
"output": "It's okay to feel overwhelmed. having a cup of tea can help you find some calm. I'm here."
},
{
"input": "i'm scared today",
"output": "i'm scared today sounds heavy. having a cup of tea might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm happy about life",
"output": "I hear you, i'm happy about life can be tough. Try going for a short walk to lift your spirits. I'm here for you."
},
{
"input": "i'm feeling excited",
"output": "i'm feeling excited sounds heavy. listening to calming music might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "why do i feel happy?",
"output": "I'm glad you shared why do i feel happy?! Let's going for a short walk to keep that positive vibe going."
},
{
"input": "i want to feel scared",
"output": "i want to feel scared sounds heavy. listening to calming music might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm so angry",
"output": "i'm so angry sounds heavy. calling a friend might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm struggling with focus",
"output": "You're not alone with i'm struggling with focus. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "why do i feel stressed?",
"output": "why do i feel stressed? sounds heavy. calling a friend might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm struggling with finances",
"output": "I hear you, i'm struggling with finances can be tough. Try stretching for a bit to lift your spirits. I'm here for you."
},
{
"input": "i need help with sadness",
"output": "It's okay to feel sad. calling a friend can help you find some calm. I'm here."
},
{
"input": "i'm empty today",
"output": "i'm empty today sounds heavy. writing down your thoughts might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm thankful today",
"output": "It's okay to feel thankful. trying a 5-minute meditation can help you find some calm. I'm here."
},
{
"input": "i want to feel calm",
"output": "I'm glad you shared i want to feel calm! Let's writing down your thoughts to keep that positive vibe going."
},
{
"input": "i need to breathe",
"output": "i need to breathe sounds heavy. trying a 5-minute meditation might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm so thankful",
"output": "I'm glad you shared i'm so thankful! Let's listening to calming music to keep that positive vibe going."
},
{
"input": "why do i feel empty?",
"output": "I'm glad you shared why do i feel empty?! Let's trying a 5-minute meditation to keep that positive vibe going."
},
{
"input": "why do i feel frustrated?",
"output": "It's okay to feel frustrated. listing one thing you're grateful for can help you find some calm. I'm here."
},
{
"input": "i want to feel happy",
"output": "I'm so sorry you're feeling happy. How about listening to calming music to ease your mind?"
},
{
"input": "i'm feeling scared",
"output": "I'm glad you shared i'm feeling scared! Let's stretching for a bit to keep that positive vibe going."
},
{
"input": "i'm struggling with friends",
"output": "I hear you, i'm struggling with friends can be tough. Try writing down your thoughts to lift your spirits. I'm here for you."
},
{
"input": "i want to feel exhausted",
"output": "I'm so sorry you're feeling exhausted. How about having a cup of tea to ease your mind?"
},
{
"input": "i need help with finances",
"output": "It's okay to feel . stretching for a bit can help you find some calm. I'm here."
},
{
"input": "i'm struggling with stress",
"output": "I'm glad you shared i'm struggling with stress! Let's going for a short walk to keep that positive vibe going."
},
{
"input": "i'm feeling angry",
"output": "i'm feeling angry sounds heavy. going for a short walk might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i feel like exhausted",
"output": "I'm so sorry you're feeling exhausted. How about going for a short walk to ease your mind?"
},
{
"input": "can we breathe?",
"output": "can we breathe? sounds heavy. writing down your thoughts might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i want to feel lost",
"output": "I hear you, i want to feel lost can be tough. Try writing down your thoughts to lift your spirits. I'm here for you."
},
{
"input": "my mind is tough",
"output": "You're not alone with my mind is tough. Let's try going for a short walk together. What do you think?"
},
{
"input": "i'm having trouble with family",
"output": "It's okay to feel . going for a short walk can help you find some calm. I'm here."
},
{
"input": "my mood is tough",
"output": "I hear you, my mood is tough can be tough. Try going for a short walk to lift your spirits. I'm here for you."
},
{
"input": "i feel like lonely",
"output": "I hear you, i feel like lonely can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "can we find peace?",
"output": "I'm glad you shared can we find peace?! Let's writing down your thoughts to keep that positive vibe going."
},
{
"input": "i need to find peace",
"output": "It's okay to feel . having a cup of tea can help you find some calm. I'm here."
},
{
"input": "can you help me sort things out?",
"output": "I hear you, can you help me sort things out? can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "i'm having trouble with friends",
"output": "You're not alone with i'm having trouble with friends. Let's try writing down your thoughts together. What do you think?"
},
{
"input": "i'm so anxious",
"output": "I hear you, i'm so anxious can be tough. Try stretching for a bit to lift your spirits. I'm here for you."
},
{
"input": "what do i do about stress?",
"output": "It's okay to feel . calling a friend can help you find some calm. I'm here."
},
{
"input": "can you help me calm down?",
"output": "It's okay to feel calm. writing down your thoughts can help you find some calm. I'm here."
},
{
"input": "i want to feel thankful",
"output": "You're not alone with i want to feel thankful. Let's try having a cup of tea together. What do you think?"
},
{
"input": "can we feel better?",
"output": "I hear you, can we feel better? can be tough. Try taking a few deep breaths to lift your spirits. I'm here for you."
},
{
"input": "can you help me stay positive?",
"output": "I'm glad you shared can you help me stay positive?! Let's listing one thing you're grateful for to keep that positive vibe going."
},
{
"input": "i'm depressed today",
"output": "I'm so sorry you're feeling depressed. How about listing one thing you're grateful for to ease your mind?"
},
{
"input": "i want to feel anxious",
"output": "I'm so sorry you're feeling anxious. How about going for a short walk to ease your mind?"
},
{
"input": "what do i do about work?",
"output": "I'm glad you shared what do i do about work?! Let's taking a few deep breaths to keep that positive vibe going."
},
{
"input": "i need help with money",
"output": "I'm glad you shared i need help with money! Let's listening to calming music to keep that positive vibe going."
},
{
"input": "i'm happy about today",
"output": "You're not alone with i'm happy about today. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "i want to feel grateful",
"output": "i want to feel grateful sounds heavy. listening to calming music might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "why do i feel tired?",
"output": "It's okay to feel tired. listing one thing you're grateful for can help you find some calm. I'm here."
},
{
"input": "what do i do about sadness?",
"output": "It's okay to feel sad. stretching for a bit can help you find some calm. I'm here."
},
{
"input": "why do i feel exhausted?",
"output": "I'm glad you shared why do i feel exhausted?! Let's trying a 5-minute meditation to keep that positive vibe going."
},
{
"input": "i'm anxious today",
"output": "I hear you, i'm anxious today can be tough. Try writing down your thoughts to lift your spirits. I'm here for you."
},
{
"input": "my job is tough",
"output": "You're not alone with my job is tough. Let's try listing one thing you're grateful for together. What do you think?"
},
{
"input": "can we vent?",
"output": "I'm glad you shared can we vent?! Let's listening to calming music to keep that positive vibe going."
},
{
"input": "i feel like frustrated",
"output": "You're not alone with i feel like frustrated. Let's try writing down your thoughts together. What do you think?"
},
{
"input": "i'm hopeful today",
"output": "i'm hopeful today sounds heavy. trying a 5-minute meditation might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "can you help me breathe?",
"output": "I'm glad you shared can you help me breathe?! Let's taking a few deep breaths to keep that positive vibe going."
},
{
"input": "i feel like tired",
"output": "You're not alone with i feel like tired. Let's try having a cup of tea together. What do you think?"
},
{
"input": "why do i feel overwhelmed?",
"output": "It's okay to feel overwhelmed. having a cup of tea can help you find some calm. I'm here."
},
{
"input": "what do i do about sleep?",
"output": "I hear you, what do i do about sleep? can be tough. Try listing one thing you're grateful for to lift your spirits. I'm here for you."
},
{
"input": "i feel like scared",
"output": "I hear you, i feel like scared can be tough. Try listing one thing you're grateful for to lift your spirits. I'm here for you."
},
{
"input": "i feel like peaceful",
"output": "I'm glad you shared i feel like peaceful! Let's listening to calming music to keep that positive vibe going."
},
{
"input": "i'm feeling frustrated",
"output": "I hear you, i'm feeling frustrated can be tough. Try calling a friend to lift your spirits. I'm here for you."
},
{
"input": "i'm struggling with money",
"output": "i'm struggling with money sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "why do i feel proud?",
"output": "why do i feel proud? sounds heavy. writing down your thoughts might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm struggling with anxiety",
"output": "i'm struggling with anxiety sounds heavy. trying a 5-minute meditation might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "what do i do about anxiety?",
"output": "I'm so sorry you're feeling . How about listening to calming music to ease your mind?"
},
{
"input": "i'm having trouble with work",
"output": "You're not alone with i'm having trouble with work. Let's try stretching for a bit together. What do you think?"
},
{
"input": "i need help with friends",
"output": "i need help with friends sounds heavy. stretching for a bit might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm struggling with work",
"output": "I hear you, i'm struggling with work can be tough. Try having a cup of tea to lift your spirits. I'm here for you."
},
{
"input": "i'm having trouble with relationships",
"output": "It's okay to feel . having a cup of tea can help you find some calm. I'm here."
},
{
"input": "i'm feeling anxious",
"output": "You're not alone with i'm feeling anxious. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "what do i do about friends?",
"output": "what do i do about friends? sounds heavy. going for a short walk might help you feel a bit lighter. I'm cheering you on."
},
{
"input": "i'm feeling tired",
"output": "I'm glad you shared i'm feeling tired! Let's stretching for a bit to keep that positive vibe going."
},
{
"input": "i need to talk",
"output": "I'm so sorry you're feeling . How about going for a short walk to ease your mind?"
},
{
"input": "i'm struggling with school",
"output": "I'm glad you shared i'm struggling with school! Let's writing down your thoughts to keep that positive vibe going."
},
{
"input": "i'm feeling happy",
"output": "I hear you, i'm feeling happy can be tough. Try stretching for a bit to lift your spirits. I'm here for you."
},
{
"input": "i need to sort things out",
"output": "You're not alone with i need to sort things out. Let's try trying a 5-minute meditation together. What do you think?"
},
{
"input": "i'm feeling hopeful",
"output": "I'm glad you shared i'm feeling hopeful! Let's trying a 5-minute meditation to keep that positive vibe going."
},
{
"input": "why do i feel scared?",
"output": "I'm glad you shared why do i feel scared?! Let's trying a 5-minute meditation to keep that positive vibe going."
},
{
"input": "can you help me vent?",
"output": "I'm so sorry you're feeling . How about listening to calming music to ease your mind?"