-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain.yml
1338 lines (1337 loc) · 51.6 KB
/
domain.yml
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
session_config:
session_expiration_time: 60
carry_over_slots_to_new_session: true
intents:
- confirm
- mood_curr
- start_session1
- start_session2
- start_session3
- start_session4
- start_session5
- state_answer
- reward_answer
- anything
- deny
slots:
action_index_list:
type: list
influence_conversation: false
# The answer people give if they are asked to create an implementation intention or
# action plan
action_planning_answer:
type: text
initial_value: ''
influence_conversation: false
# We distinguish 3 levels of action success based on our completion
# question. Originally, we had just 2 levels because we just asked
# whether or not people did the activity. But now we ask for effort
# on a scale from 0 to 10.
action_success:
type: float
max_value: 2
min_value: 0
influence_conversation: true
action_type_index_list:
type: list
influence_conversation: false
activity_experience:
type: text
initial_value: ''
influence_conversation: false
activity_experience_mod:
type: text
initial_value: ''
influence_conversation: false
activity_formulation:
type: text
influence_conversation: false
# Text of activity for email reminder in Prolific
activity_formulation_email:
type: text
influence_conversation: false
activity_index_list:
type: list
influence_conversation: false
activity_verb:
type: text
influence_conversation: false
activity_verb_prev:
type: text
initial_value: ''
influence_conversation: false
attention_check:
type: text
initial_value: ''
influence_conversation: false
attention_check_2:
type: text
initial_value: ''
influence_conversation: false
message_formulation:
type: text
influence_conversation: false
mood:
type: text
initial_value: ''
influence_conversation: false
pers_input:
type: bool
influence_conversation: true
# Persuasion type number 4 is to send no persuasive message
pers_type_four:
type: bool
influence_conversation: true
plan_correct:
type: bool
influence_conversation: true
prolific_link:
type: text
initial_value: ''
influence_conversation: false
quadrant:
type: text
influence_conversation: false
reflection_answer:
type: text
initial_value: ''
influence_conversation: false
reflective_question:
type: text
initial_value: ''
influence_conversation: false
# Persuasive reminder question in message sent to Prolific after session
reminder_formulation:
type: text
influence_conversation: false
reward:
type: text
initial_value: ''
influence_conversation: false
satisf_correct:
type: bool
influence_conversation: true
session_loaded:
type: bool
influence_conversation: true
session_saved:
type: bool
influence_conversation: true
state_1:
type: text
initial_value: ''
influence_conversation: false
state_10:
type: text
initial_value: ''
influence_conversation: false
state_2:
type: text
initial_value: ''
influence_conversation: false
state_3:
type: text
initial_value: ''
influence_conversation: false
state_4:
type: text
initial_value: ''
influence_conversation: false
state_5:
type: text
initial_value: ''
influence_conversation: false
state_6:
type: text
initial_value: ''
influence_conversation: false
state_7:
type: text
initial_value: ''
influence_conversation: false
state_8:
type: text
initial_value: ''
influence_conversation: false
state_9:
type: text
initial_value: ''
influence_conversation: false
study_group:
type: text
initial_value: ''
influence_conversation: false
user_satisfaction:
type: text
initial_value: ''
influence_conversation: false
responses:
utter_greet_first_time:
- text: Hey there, I'm Sam. It's nice to meet you!
utter_purpose:
- text: "I've mentioned my name, but I haven't yet told you what I do: I'm here\
\ to prepare you for quitting smoking. Becoming more physically active may help\
\ to quit smoking, so I'll also prepare you to become more physically active."
utter_expertise:
- buttons:
- payload: /confirm
title: I see
- payload: /confirm
title: Very cool!
text: The knowledge I have allows me to target my support to the situation that
people are in. It helps me to suggest useful activities, and to aid people in
doing them. Not bad, right?
utter_prompt_usage:
- text: Before we start, let me explain how you can communicate with me.
utter_explain_usage:
- buttons:
- payload: /confirm
title: Yes, that's clear
- payload: /confirm
title: Nice, sounds easy enough!
text: Most of the time, you can just click on one of the buttons like you already
did. If no buttons appear, just make use of the text field below. Sounds good?
utter_prompt_session_overview:
- text: Now, let me tell you how this session works.
utter_explain_session_overview_1:
- text: "First, I'll use my knowledge to recommend you a preparation activity to do before the next session, which you'll get invited to about 2 days from now."
utter_explain_session_overview_2:
- text: Next, I'll ask you how you think about this activity. This will allow me
to learn to better support you and other people like you.
utter_explain_session_overview_3:
- text: "In the end, I'll provide additional information on doing the activity."
utter_explain_session_overview_4:
- text: "And don't worry, I'll also send you your activity as a message in Prolific."
utter_explain_session_overview_5:
- text: "Please note that doing this activity after this session is voluntary and does not impact your payment."
utter_explain_session_final:
- text: I hope this is clear. Ready to begin?
buttons:
- payload: /confirm
title: "Yes, let's get started!"
- payload: /confirm
title: Yes!
- text: "Now you should know what to expect. Let's get started?"
buttons:
- payload: /confirm
title: "Sure"
- payload: /confirm
title: Yes!
- text: "Hopefully this was easy to follow. Let me know once you're ready to start."
buttons:
- payload: /confirm
title: "I'm ready now"
- text: "I hope you could follow me. Just use the button below to tell me when to proceed."
buttons:
- payload: /confirm
title: "Let's start"
- text: "I've now told you what to expect from this session. Let's start this session?"
buttons:
- payload: /confirm
title: "Okay"
- payload: /confirm
title: "Sure!"
utter_greet_not_first:
- text: "Hi, nice to see you again!"
- text: "Hello there, welcome back!"
- text: "Hello, it's great to see you again!"
- text: "Hi there, welcome back!"
- text: "Hi, I'm happy to see you again!"
utter_greet_session_3:
- text: Hey there, welcome to your third conversation with me!
utter_greet_last:
- text: Hi there, welcome to your last session!
utter_explain_session_3_1:
- text: Now let me quickly tell you what this session looks like.
utter_explain_session_24_1:
- text: Before we start, let me give you a quick overview of what this session looks
like.
- text: Before we begin, let me quickly give you an overview of what this session
looks like.
- text: "Before we begin, I'd like to give you a brief overview of this session."
utter_explain_session_2_2:
- text: I'll first ask you about your experience (if any) with your activity from
last time.
utter_explain_session_2_3:
- text: "Then, I'll use my knowledge to recommend you a new preparation activity."
utter_explain_session_2_4:
- buttons:
- payload: /confirm
title: Sure!
- payload: /confirm
title: Sounds good
text: And, just like last time, I'll ask you how you think about doing this activity,
and provide some more information on the activity. Okay?
utter_explain_session_234_5:
- text: Cool! Oh and of course you'll get a message with your new activity in Prolific.
- text: Perfect! Oh and of course I'll send you a message with your new activity in
Prolific.
- text: "Cool! In the end, I'll also send you a message with your new activity in Prolific again."
- text: "Perfect! At the end of this session, I'll also again send you a message with your new activity in Prolific."
utter_explain_session_234_6:
- text: Please remember that doing the activity after this session is entirely up to you. Your payment does not depend on this.
- text: Don't forget that actually doing the activity after this session is voluntary. It's not required for you to get paid.
- text: Again, whether you do your recommended activity after this session is up to you. Your payment is not contingent on you doing the activity.
- text: It's still up to you whether you do your assigned activity after this session. It will not impact your payment.
- text: Recall that your payment does not depend on whether or not you do your advised activity after this session. Doing the activity is not required.
- text: "Like before, you will get paid independent of whether or not you do your recommended activity after this session. Doing the activity is entirely voluntary."
utter_explain_session_34_2:
- text: Just as before, I'll first ask you about your experience (if any) with your
activity from last time.
- text: "First, I'll ask you about your experience (if any) with your activity from the last session."
- text: "I'll again start with asking you about your experience (if any) with your activity from the last session."
utter_explain_session_345_3:
- text: Then I'll suggest you a new preparation activity based on the information
I have about you and people who are similar to you.
- text: I'll then recommend you a new preparation activity based on the information
I have about you and people like you.
- text: "I'll then use my knowledge to recommend you a new preparation activity."
- text: "I'll then make use of my knowledge to suggest a new preparation activity to you."
- text: "Then I'll propose a new preparation activity to you based on what I know about you and people like you."
utter_explain_session_345_4:
- text: In the end, I'll ask you how you think about doing this activity, and provide
some further information on the activity. Sounds good?
buttons:
- payload: /confirm
title: Okay!
- payload: /confirm
title: Of course
- text: "Finally, I'll ask you about your thoughts and give some more information on this activity. Okay?"
buttons:
- payload: /confirm
title: "Sounds good"
- payload: /confirm
title: "No problem!"
- text: At the end of this session, I'll ask you to tell me how you think about this activity, and I'll provide some additional information on this activity. Okay?
buttons:
- payload: /confirm
title: "Alright!"
- payload: /confirm
title: "OK"
- text: Finally, I'll ask you to tell me about your thoughts on this activity, and I'll tell you a little more about doing this activity. Sounds good?
buttons:
- payload: /confirm
title: "Okay!"
- payload: /confirm
title: "Sure thing"
utter_explain_session_5_1:
- text: "Before we start, let me briefly explain how this last session is structured."
utter_explain_session_5_2:
- text: Just as before, I'll first ask you about your experience (if any) with your
activity from last time.
utter_explain_session_5_5:
- text: "Cool! Since this is the last session, you'll be asked about your experience (if any) with this activity in the post-questionnaire rather than a next session with me."
utter_explain_session_5_6:
- text: "But I'll still send you a message with your new activity in Prolific."
utter_explain_session_5_7:
- text: "Remember, doing your activity after this session is voluntary and does not impact your payment."
utter_ask_activity_completion:
- buttons:
- payload: /reward_answer{{"reward":"0"}}
title: "0 (nothing)"
- payload: /reward_answer{{"reward":"1"}}
title: "1"
- payload: /reward_answer{{"reward":"2"}}
title: "2"
- payload: /reward_answer{{"reward":"3"}}
title: "3"
- payload: /reward_answer{{"reward":"4"}}
title: "4"
- payload: /reward_answer{{"reward":"5"}}
title: "5"
- payload: /reward_answer{{"reward":"6"}}
title: "6"
- payload: /reward_answer{{"reward":"7"}}
title: "7"
- payload: /reward_answer{{"reward":"8"}}
title: "8"
- payload: /reward_answer{{"reward":"9"}}
title: "9"
- payload: /reward_answer{{"reward":"10"}}
title: "10 (extremely strong)"
text: "Please rate the overall effort you put into doing this activity.\n\nPlease answer honestly. Recall that doing your activity is voluntary and that your answer to this question thus does **not** impact your payment."
utter_name_last_activity_components:
- text: "Great! Last time I suggested you to {activity_verb_prev}."
utter_name_last_activity_components_last:
- text: "Great! In the last session I suggested you to {activity_verb_prev}."
utter_ask_activity_completion_last:
- buttons:
- payload: /reward_answer{{"reward":"0"}}
title: "0 (nothing)"
- payload: /reward_answer{{"reward":"1"}}
title: "1"
- payload: /reward_answer{{"reward":"2"}}
title: "2"
- payload: /reward_answer{{"reward":"3"}}
title: "3"
- payload: /reward_answer{{"reward":"4"}}
title: "4"
- payload: /reward_answer{{"reward":"5"}}
title: "5"
- payload: /reward_answer{{"reward":"6"}}
title: "6"
- payload: /reward_answer{{"reward":"7"}}
title: "7"
- payload: /reward_answer{{"reward":"8"}}
title: "8"
- payload: /reward_answer{{"reward":"9"}}
title: "9"
- payload: /reward_answer{{"reward":"10"}}
title: "10 (extremely strong)"
text: "Please rate the overall effort you put into doing this activity.\n\nPlease answer honestly. Recall that doing your activity is voluntary and that your answer to this question thus does **not** impact your payment."
utter_response_activity_completion_done:
- text: "Yay, congrats!"
- text: "Nice, good job!"
- text: "Awesome, well done!"
- text: "Nice, congratulations!"
- text: "Excellent, way to go!"
- text: "Yay, nice work!"
utter_response_activity_completion_doneMedium:
- text: "Nice that you gave it a try!"
- text: "Cool, I'm happy to hear that you worked on the activity."
- text: "Nice to hear that you tried the activity!"
- text: "Cool, it's nice that you gave it a shot!"
- text: "I'm happy to hear that you gave the activity a shot."
- text: "That's good to hear that you worked on the activity."
utter_response_activity_completion_notDone:
- text: "I'm sorry to hear that. I understand that it can be difficult."
- text: "Hmm, that's a pity. Maybe you've been busy."
- text: "Too bad. I know that it can be hard at first."
- text: "That's too bad. This is not uncommon at the start."
- text: "Ah that's a shame. This can happen at the beginning."
- text: "I see, that's a pity. This can happen!"
- text: "Oh, what a shame. I see that this can be challenging sometimes."
utter_response_activity_completion_done_last:
- text: "Yay, nicely done!"
utter_response_activity_completion_notDone_last:
- text: "Ah that is unfortunate. I understand that it's not always easy."
utter_response_activity_completion_DoneMedium_last:
- text: "Nice, I'm glad that you tried the activity."
utter_ask_activity_completion_details_yes:
- text: How did you approach, do, or experience your assigned activity? Use the
text field.
utter_ask_activity_completion_details_no:
- text: "How did you approach, do, or experience your assigned activity? If you have no feedback on the activity, just type 'None' in the text field."
utter_ask_activity_completion_details_yes_last:
- text: How did you approach, do, or experience your assigned activity? Use the
text field.
utter_ask_activity_completion_details_no_last:
- text: "How did you approach, do, or experience your assigned activity? If you have no feedback on the activity, just type 'None' in the text field."
utter_thank_you_activity_experience:
- text: Okay, thanks for telling me!
- text: Cool, thanks for letting me know!
- text: Alright, thanks for sharing that with me!
- text: Okay, I appreciate that information!
- text: "Alright, that's good to know!"
- text: "OK, I'm glad you told me that!"
utter_thank_you_activity_experience_last:
- text: Okay, thanks for sharing!
utter_repeat_activity_completion_answer:
- text: "This is what I got: *{activity_experience}*\n\nWould you like to add or change anything?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
- text: "I got this: *{activity_experience}*\n\nDo you want to add or modify anything?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
- text: "I received this: *{activity_experience}*\n\nIs there something that you'd like to add or change?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
- text: "This is what you told me: *{activity_experience}*\n\nIs there anything that you want to add or alter?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
- text: "I got this from you: *{activity_experience}*\n\nIs there anything that I should add or modify about your response?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
- text: "This is the response I got: *{activity_experience}*\n\nDo you want to add or change anything?"
buttons:
- payload: /confirm
title: Yes
- payload: /deny
title: No
utter_ask_activity_comp_details_mod_last:
- text: "OK, kindly tell me what you'd like to add or change."
utter_ask_activity_comp_details_mod:
- text: "Okay, please tell me what you'd like to add or alter."
- text: "OK, what would you like to add or change? Use the text field."
- text: "Okay, what is it that you'd like to add or alter? Use the text field."
- text: "Okay, kindly tell me what it is that you'd like to add or modify."
utter_ask_for_mood:
- buttons:
- payload: /mood_curr{{"mood":"satisfied"}}
title: Satisfied
- payload: /mood_curr{{"mood":"pleased"}}
title: Pleased
- payload: /mood_curr{{"mood":"delighted"}}
title: Delighted
- payload: /mood_curr{{"mood":"happy"}}
title: Happy
- payload: /mood_curr{{"mood":"glad"}}
title: Glad
- payload: /mood_curr{{"mood":"excited"}}
title: Excited
- payload: /mood_curr{{"mood":"aroused"}}
title: Aroused
- payload: /mood_curr{{"mood":"astonished"}}
title: Astonished
- payload: /mood_curr{{"mood":"alarmed"}}
title: Alarmed
- payload: /mood_curr{{"mood":"angry"}}
title: Angry
- payload: /mood_curr{{"mood":"annoyed"}}
title: Annoyed
- payload: /mood_curr{{"mood":"distressed"}}
title: Distressed
- payload: /mood_curr{{"mood":"afraid"}}
title: Afraid
- payload: /mood_curr{{"mood":"frustrated"}}
title: Frustrated
- payload: /mood_curr{{"mood":"miserable"}}
title: Miserable
- payload: /mood_curr{{"mood":"depressed"}}
title: Depressed
- payload: /mood_curr{{"mood":"gloomy"}}
title: Gloomy
- payload: /mood_curr{{"mood":"tense"}}
title: Tense
- payload: /mood_curr{{"mood":"droopy"}}
title: Droopy
- payload: /mood_curr{{"mood":"sad"}}
title: Sad
- payload: /mood_curr{{"mood":"tired"}}
title: Tired
- payload: /mood_curr{{"mood":"bored"}}
title: Bored
- payload: /mood_curr{{"mood":"sleepy"}}
title: Sleepy
- payload: /mood_curr{{"mood":"serene"}}
title: Serene
- payload: /mood_curr{{"mood":"relaxed"}}
title: Relaxed
- payload: /mood_curr{{"mood":"calm"}}
title: Calm
- payload: /mood_curr{{"mood":"tranquil"}}
title: Tranquil
- payload: /mood_curr{{"mood":"content"}}
title: Content
- payload: /mood_curr{{"mood":"neutral"}}
title: Neutral
text: How are you feeling today?
utter_mood_positive_valence_high_arousal_quadrant:
- text: Yay, always good to hear that somebody is feeling {mood}!
- text: Awesome, you must be having a good day!
- text: Fantastic, that's very good to hear!
- text: Great, I'm happy to hear that that you're feeling {mood}!
- text: Fantastic, I'm happy to hear that!
utter_mood_positive_valence_low_arousal_quadrant:
- text: Nice, that's good to hear.
- text: Nice, I'm glad to hear that you're feeling {mood}.
- text: Nice, I'm glad to hear that.
- text: Nice, that's always good to hear.
utter_mood_negative_valence_low_arousal_quadrant:
- text: I hate to hear that you're feeling {mood}. I hope you feel better soon!
Meanwhile, maybe this session can help to cheer you up a bit.
- text: Aww it doesn't feel good to hear that. Hopefully you feel better soon!
- text: Oh I'm so sorry that you're not having a good day. I hope it gets better soon and that I can cheer you up a little!
- text: That's a shame that you're not feeling well today. Hopefully you feel better
soon!
- text: "So sorry about that! Feel better soon - hopefully talking about preparing to quit smoking and becoming more physically active can help a bit."
utter_mood_negative_valence_high_arousal_quadrant:
- text: I'm really sorry to hear that you're feeling {mood}. I hope you feel better soon!
- text: Aww I'm so sorry to hear this. Hopefully you feel less {mood} soon!
- text: Oh that's a shame that you're not having a good day. I hope it gets better soon and that I can distract you a bit.
- text: I hate to hear that today isn't a good day for you. Hopefully you feel better
soon and that it's okay to proceed with this session!
- text: "Awww what a shame. Hopefully you feel less {mood} soon!"
utter_mood_neutral:
- text: "I see, I guess that's not too bad."
- text: "Ah, sounds like you're having a pretty average day."
- text: "Hm, that's not too bad I guess."
- text: "I see, seems like you're doing okay then."
- text: "Ah well, could be worse I guess."
utter_great:
- text: Great!
- text: Perfect!
- text: Awesome!
utter_prepare_activity_proposal_session1:
- text: 'Here is the first activity that I think would be beneficial for you:'
utter_prepare_activity_proposal_session234:
- text: 'Here is the next activity that I think would help you:'
- text: "This is the new activity that I think would be helpful for you:"
- text: "And this is the new activity that I envision to aid you:"
- text: "This is the new activity of which I think that it would help you:"
- text: "And here is the next activity of which I believe that it would aid you:"
utter_prepare_activity_proposal_session5:
- text: 'Here is the new activity that I expect to be useful for you:'
utter_activity_formulation:
- text: "**{activity_formulation}**"
utter_activity_clear_first:
- text: "I'll continue when you're done reading about your first activity."
buttons:
- payload: /confirm
title: "I'm done"
utter_activity_clear:
- text: "Let me know once you're done reading your new activity."
buttons:
- payload: /confirm
title: "I'm done!"
- text: "Just use the button below to continue after you've read the activity description."
buttons:
- payload: /confirm
title: "I've finished reading"
- text: "Please tell me when you've finished reading the description."
buttons:
- payload: /confirm
title: "I've read everything"
- text: "Once you're done reading about your new activity, let me know."
buttons:
- payload: /confirm
title: "Done!"
- text: "Use the button below once you've finished reading, then I'll continue."
buttons:
- payload: /confirm
title: "Finished!"
- text: "Let me know when you've finished reading the description and we can continue."
buttons:
- payload: /confirm
title: "Let's continue"
utter_activity_clear_last:
- buttons:
- payload: /confirm
title: "I'm done reading"
text: "Just like in the earlier sessions, let me know when you've finished reading."
utter_questions_state_intro:
- text: "Cool! Now, let me ask you a few questions about how you think about this activity."
buttons:
- payload: /confirm
title: Okay!
- payload: /confirm
title: Go ahead
- text: "Alright! Then I'd like to ask you some questions about your thoughts on this activity now."
buttons:
- payload: /confirm
title: OK
- payload: /confirm
title: Sure!
- text: "OK, now I'd like to learn about your thoughts on this activity."
buttons:
- payload: /confirm
title: Of course
- payload: /confirm
title: Okay
- text: "Okay! Then it would be great if you could now help me find out how you think about this activity."
buttons:
- payload: /confirm
title: Alright
- payload: /confirm
title: No problem
- text: "Cool! Now it's important for me to find out how you think about this activity."
buttons:
- payload: /confirm
title: Sure thing
- payload: /confirm
title: OK
- text: "Alright! I'd like to now ask you to tell me about your thoughts on this activity."
buttons:
- payload: /confirm
title: "I'd love to"
- payload: /confirm
title: Sure
utter_questions_state_intro_2:
- text: "Perfect! Please rate the following 12 statements:"
- text: "Thanks! Please rate the 12 statements below:"
- text: "Perfect! Kindly rate the subsequent 12 statements:"
- text: "Thanks! Please rate the 12 statements that I'll present to you:"
- text: "Thank you! Kindly rate the 12 statements that I'll send you:"
- text: "Thank you! Please rate the 12 statements that you'll now see one by one:"
utter_ask_satisfaction_prep:
- text: "Before we start, I'd like to ask you for some feedback."
utter_ask_satisfaction_explain:
- text: Please answer the following question by typing a number between -10 and
10, -10 being 'Very negative', 0 being 'Neutral' and +10 being 'Very positive.'
utter_ask_satisfaction_explain_last:
- text: Please answer the following question by typing a number between -10 and
10, -10 being 'Very negative', 0 being 'Neutral' and +10 being 'Very positive.'
utter_ask_satisfaction_prep_last:
- text: Before we start your last session, I'd like to ask you for some feedback
again.
utter_ask_satisfaction:
- text: Please rate the impact of our last 2 conversations on your motivation to
do your previous assigned activities.
utter_ask_satisfaction_last:
- text: Please rate the impact of our last 2 conversations on your motivation to
do your previous assigned activities.
utter_satisfaction_false:
- text: Hmm, I could not understand that. Please enter a number between -10 and
10.
utter_satisfaction_false_last:
- text: Hmm, I could not understand that. Please enter a number between -10 and
10.
utter_satisfaction_false_false:
- text: I'm sorry, this does not seem to be a number between -10 and 10. Please
enter a number between -10 and 10 such as -10, -5, 0, 5 or 10.
utter_satisfaction_false_false_last:
- text: I'm sorry, this does not seem to be a number between -10 and 10. Please
enter a number between -10 and 10 such as -10, -5, 0, 5 or 10.
utter_satisfaction_false_false_false:
- text: Unfortunately I still could not understand that. But that's okay. Let's
move on!
utter_satisfaction_false_false_false_last:
- text: Unfortunately I still could not understand that. But that's okay. Let's
move on!
utter_question_state_1:
- buttons:
- payload: /state_answer{{"state_1":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_1":"1"}}
title: Disagree
- payload: /state_answer{{"state_1":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_1":"3"}}
title: Agree
- payload: /state_answer{{"state_1":"4"}}
title: Agree strongly
text: '1) I know why it is important to do the activity.'
utter_question_state_1_last:
- buttons:
- payload: /state_answer{{"state_1":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_1":"1"}}
title: Disagree
- payload: /state_answer{{"state_1":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_1":"3"}}
title: Agree
- payload: /state_answer{{"state_1":"4"}}
title: Agree strongly
text: '1) I know why it is important to do the activity.'
utter_question_state_2:
- buttons:
- payload: /state_answer{{"state_2":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_2":"1"}}
title: Disagree
- payload: /state_answer{{"state_2":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_2":"3"}}
title: Agree
- payload: /state_answer{{"state_2":"4"}}
title: Agree strongly
text: '2) I have sufficient time to do the
activity.'
utter_question_state_2_last:
- buttons:
- payload: /state_answer{{"state_2":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_2":"1"}}
title: Disagree
- payload: /state_answer{{"state_2":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_2":"3"}}
title: Agree
- payload: /state_answer{{"state_2":"4"}}
title: Agree strongly
text: '2) I have sufficient time to do the
activity.'
utter_question_state_3:
- buttons:
- payload: /state_answer{{"state_3":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_3":"1"}}
title: Disagree
- payload: /state_answer{{"state_3":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_3":"3"}}
title: Agree
- payload: /state_answer{{"state_3":"4"}}
title: Agree strongly
text: "3) I have things\
\ that prompt/remind me to do the activity."
utter_question_state_3_last:
- buttons:
- payload: /state_answer{{"state_3":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_3":"1"}}
title: Disagree
- payload: /state_answer{{"state_3":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_3":"3"}}
title: Agree
- payload: /state_answer{{"state_3":"4"}}
title: Agree strongly
text: "3) I have things\
\ that prompt/remind me to do the activity."
utter_question_state_4:
- buttons:
- payload: /state_answer{{"state_4":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_4":"1"}}
title: Disagree
- payload: /state_answer{{"state_4":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_4":"3"}}
title: Agree
- payload: /state_answer{{"state_4":"4"}}
title: Agree strongly
text: '4) I feel like I am part of a group
that is doing these kinds of activities.'
utter_question_state_4_last:
- buttons:
- payload: /state_answer{{"state_4":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_4":"1"}}
title: Disagree
- payload: /state_answer{{"state_4":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_4":"3"}}
title: Agree
- payload: /state_answer{{"state_4":"4"}}
title: Agree strongly
text: '4) I feel like I am part of a group
that is doing these kinds of activities.'
utter_question_attention_check:
- text: "5) I am more than 17 years old."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
- text: "5) I am more than 9 years old."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
- text: "5) This is a check so answer that you agree strongly here."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
- text: "5) I do NOT live in the state Camelot in Nepal."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
- text: "5) I was NOT born in the city Seppenbade in Germany."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
- text: "5) I do NOT live in a house next to the river Ludingh in the Netherlands."
buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
utter_question_attention_check_last:
- buttons:
- payload: /state_answer{{"attention_check":"0"}}
title: Disagree strongly
- payload: /state_answer{{"attention_check":"1"}}
title: Disagree
- payload: /state_answer{{"attention_check":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"attention_check":"3"}}
title: Agree
- payload: /state_answer{{"attention_check":"4"}}
title: Agree strongly
text: "5) I am somebody born\
\ on planet Earth."
utter_question_state_5:
- buttons:
- payload: /state_answer{{"state_5":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_5":"1"}}
title: Disagree
- payload: /state_answer{{"state_5":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_5":"3"}}
title: Agree
- payload: /state_answer{{"state_5":"4"}}
title: Agree strongly
text: '6) I feel that I want to do the activity.'
utter_question_state_5_last:
- buttons:
- payload: /state_answer{{"state_5":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_5":"1"}}
title: Disagree
- payload: /state_answer{{"state_5":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_5":"3"}}
title: Agree
- payload: /state_answer{{"state_5":"4"}}
title: Agree strongly
text: '6) I feel that I want to do the activity.'
utter_question_state_6_prep:
- text: "Nice, now we're halfway! Ready for the rest?"
buttons:
- payload: /confirm
title: Yes, let's go!
- payload: /confirm
title: OK!
- text: You're halfway done! Ready for the second half?
buttons:
- payload: /confirm
title: Alright
- payload: /confirm
title: Sure!
- text: Just 6 more statements to go! Ready?
buttons:
- payload: /confirm
title: Sure!
- payload: /confirm
title: Okay
- text: Nice, you've got only 6 statements left! Let's get them done?
buttons:
- payload: /confirm
title: Alright!
- payload: /confirm
title: OK
- text: You're almost done - just 6 statements left! Let's finish them?
buttons:
- payload: /confirm
title: Yes!
- payload: /confirm
title: Sounds good
utter_halfway_response:
- text: "Alright! Then these are the last 6 statements I'd like you to rate:"
- text: "Okay! These are the remaining 6 statements I'd like you to rate:"
- text: "Okay! Please rate these remaining 6 statements:"
- text: "Alright! Then please rate these last 6 statements:"
- text: "OK! Then kindly rate these last 6 statements:"
utter_question_state_6:
- buttons:
- payload: /state_answer{{"state_6":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_6":"1"}}
title: Disagree
- payload: /state_answer{{"state_6":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_6":"3"}}
title: Agree
- payload: /state_answer{{"state_6":"4"}}
title: Agree strongly
text: "7) I feel that I need to do the activity."
utter_question_state_6_last:
- buttons:
- payload: /state_answer{{"state_6":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_6":"1"}}
title: Disagree
- payload: /state_answer{{"state_6":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_6":"3"}}
title: Agree
- payload: /state_answer{{"state_6":"4"}}
title: Agree strongly
text: "7) I feel that I need to do the activity."
utter_question_state_7:
- buttons:
- payload: /state_answer{{"state_7":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_7":"1"}}
title: Disagree
- payload: /state_answer{{"state_7":"2"}}
title: Neither agree nor disagree
- payload: /state_answer{{"state_7":"3"}}
title: Agree
- payload: /state_answer{{"state_7":"4"}}
title: Agree strongly
text: "8) I believe\
\ that it would be a good thing to do the activity."
utter_question_state_7_last:
- buttons:
- payload: /state_answer{{"state_7":"0"}}
title: Disagree strongly
- payload: /state_answer{{"state_7":"1"}}