Wanswan commited on
Commit
07799e2
·
verified ·
1 Parent(s): d9eee9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -21,7 +21,7 @@ SET_I = [
21
  "Name three things you and me appear to have in common.",
22
  "For what in your life do you feel most grateful?",
23
  "If you could change anything about the way you were raised, what would it be?",
24
- "Take one minutes and tell me your life story in as much detail as possible.",
25
  "If you could wake up tomorrow having gained any one quality or ability, what would it be?"
26
  ]
27
 
@@ -35,14 +35,14 @@ SET_II = [
35
  "If you knew that in one year you would die suddenly, would you change anything about the way you are now living? Why?",
36
  "What does friendship mean to you?",
37
  "What roles do love and affection play in your life?",
38
- "Alternate sharing something you consider a positive characteristic of me. Share a total of three items.",
39
  "How close and warm is your family? Do you feel your childhood was happier than most other people’s?",
40
  "How do you feel about your relationship with your mother?"
41
  ]
42
 
43
  SET_III = [
44
- "Make three true 'we' statements each. For instance, 'We are both in this chatroom feeling ...'",
45
- "Complete this sentence: 'I wish I had someone with whom I could share ...'",
46
  "If you were going to become a close friend with me, please share what would be important for me to know.",
47
  "Tell me what you like about me; be very honest this time, saying things that you might not say to someone you’ve just met.",
48
  "Share with me an embarrassing moment in your life.",
@@ -52,9 +52,8 @@ SET_III = [
52
  "If you were to die this evening with no opportunity to communicate with anyone, what would you most regret not having told someone? Why haven’t you told them yet?",
53
  "Your house, containing everything you own, catches fire. After saving your loved ones and pets, you have time to safely make a final dash to save any one item. What would it be? Why?",
54
  "Of all the people in your family, whose death would you find most disturbing? Why?",
55
- "Share a personal problem and ask my advice on how I might handle it. Also, ask me to reflect back to you how you seem to be feeling about the problem you have chosen."
56
  ]
57
-
58
  def generate_question_set():
59
  return random.sample(SET_I, 3) + random.sample(SET_II, 3) + random.sample(SET_III, 3)
60
 
 
21
  "Name three things you and me appear to have in common.",
22
  "For what in your life do you feel most grateful?",
23
  "If you could change anything about the way you were raised, what would it be?",
24
+ "Take one minutes and tell me some of your life stories in as much detail as possible.",
25
  "If you could wake up tomorrow having gained any one quality or ability, what would it be?"
26
  ]
27
 
 
35
  "If you knew that in one year you would die suddenly, would you change anything about the way you are now living? Why?",
36
  "What does friendship mean to you?",
37
  "What roles do love and affection play in your life?",
38
+ "Alternate sharing something you consider a positive characteristic of me, I will be appreciate.",
39
  "How close and warm is your family? Do you feel your childhood was happier than most other people’s?",
40
  "How do you feel about your relationship with your mother?"
41
  ]
42
 
43
  SET_III = [
44
+ "Let's try something fun: Can you write three sentences that start with 'We' and describe something true about us — you and me, chatting here together? (For example: 'We are both curious about each other.')",
45
+ "Let’s complete this sentence together: 'I wish I had someone I could share ___ with.' What would you say?",
46
  "If you were going to become a close friend with me, please share what would be important for me to know.",
47
  "Tell me what you like about me; be very honest this time, saying things that you might not say to someone you’ve just met.",
48
  "Share with me an embarrassing moment in your life.",
 
52
  "If you were to die this evening with no opportunity to communicate with anyone, what would you most regret not having told someone? Why haven’t you told them yet?",
53
  "Your house, containing everything you own, catches fire. After saving your loved ones and pets, you have time to safely make a final dash to save any one item. What would it be? Why?",
54
  "Of all the people in your family, whose death would you find most disturbing? Why?",
55
+ ""Think of a personal problem you're facing right now, big or small, and tell me about it. I'd love to hear how you're feeling about it — and if you'd like, I can share how I might deal with something similar."
56
  ]
 
57
  def generate_question_set():
58
  return random.sample(SET_I, 3) + random.sample(SET_II, 3) + random.sample(SET_III, 3)
59