Update app.py
Browse files
app.py
CHANGED
|
@@ -13,37 +13,37 @@ WELCOME_MESSAGE_EN = "Hi! I'm Robin, your dialogue partner.\nWe're about to begi
|
|
| 13 |
NORMAL_SET_I = [
|
| 14 |
"When was the last time you walked for more than an hour? Describe where you went and what you saw.",
|
| 15 |
"What is the best gift you have ever received? Why?",
|
| 16 |
-
"If you had to leave
|
| 17 |
"How did you celebrate Halloween last year?",
|
| 18 |
"Do you read newspapers often? Which newspapers do you like? Why?",
|
| 19 |
"What is the ideal number of students to share a house with? Why?",
|
| 20 |
"If you could invent a new flavor of ice cream, what flavor would you create?",
|
| 21 |
-
"What is the best restaurant you have been to in the past month
|
| 22 |
"Describe the pet you last got.",
|
| 23 |
"What is your favorite holiday? Why?",
|
| 24 |
-
"Tell
|
| 25 |
]
|
| 26 |
NORMAL_SET_II = [
|
| 27 |
"What gift did you get on your last birthday?",
|
| 28 |
"Describe your last trip to the zoo.",
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
"Do you like to wake up early or stay up late? Has anything interesting ever happened to you because of this?",
|
| 32 |
-
"Where are you from?
|
| 33 |
-
"What is your favorite
|
| 34 |
-
"What
|
| 35 |
"What gifts did you receive last Christmas/Hanukkah?",
|
| 36 |
-
"Who is your favorite
|
| 37 |
-
"What was your impression of
|
| 38 |
-
"What is the best TV show you have seen in the past month
|
| 39 |
"What is your favorite holiday? Why?"
|
| 40 |
]
|
| 41 |
NORMAL_SET_III = [
|
| 42 |
"Where did you go to high school? What was it like?",
|
| 43 |
-
"What is the best book you have read in the past three months
|
| 44 |
"What country would you most like to visit? What attracts you to it?",
|
| 45 |
"Do you prefer digital or analog watches/clocks? Why?",
|
| 46 |
-
"
|
| 47 |
"What are the pros and cons of artificial Christmas trees?",
|
| 48 |
"How often do you get your hair cut? Where do you go? Have you ever had a bad haircut?",
|
| 49 |
"Did you have a class pet in elementary school? Do you remember its name?",
|
|
@@ -53,6 +53,7 @@ NORMAL_SET_III = [
|
|
| 53 |
"Have you ever participated in a school play? What role did you play? What was the plot? Did anything funny happen during the play?"
|
| 54 |
]
|
| 55 |
|
|
|
|
| 56 |
def generate_question_set():
|
| 57 |
return random.sample(NORMAL_SET_I, 3) + random.sample(NORMAL_SET_II, 3) + random.sample(NORMAL_SET_III, 3)
|
| 58 |
|
|
|
|
| 13 |
NORMAL_SET_I = [
|
| 14 |
"When was the last time you walked for more than an hour? Describe where you went and what you saw.",
|
| 15 |
"What is the best gift you have ever received? Why?",
|
| 16 |
+
"If you had to leave your current city, where would you move to? What do you miss most about your current city?",
|
| 17 |
"How did you celebrate Halloween last year?",
|
| 18 |
"Do you read newspapers often? Which newspapers do you like? Why?",
|
| 19 |
"What is the ideal number of students to share a house with? Why?",
|
| 20 |
"If you could invent a new flavor of ice cream, what flavor would you create?",
|
| 21 |
+
"What is the best restaurant you have been to in the past month? Please describe it.",
|
| 22 |
"Describe the pet you last got.",
|
| 23 |
"What is your favorite holiday? Why?",
|
| 24 |
+
"Tell me the funniest thing that happened when you were with a child."
|
| 25 |
]
|
| 26 |
NORMAL_SET_II = [
|
| 27 |
"What gift did you get on your last birthday?",
|
| 28 |
"Describe your last trip to the zoo.",
|
| 29 |
+
"Is there someone in your family you feel especially close to? What makes your bond strong?",
|
| 30 |
+
"Let’s play a quick word game! I’ll say a word, and you respond with a word that starts with the last letter of mine. We’ll go back and forth for a few rounds — no need to form sentences, just have fun!",
|
| 31 |
"Do you like to wake up early or stay up late? Has anything interesting ever happened to you because of this?",
|
| 32 |
+
"Where are you from? Tell me some places you have lived.",
|
| 33 |
+
"What is your favorite subject in school and why?",
|
| 34 |
+
"What is your plan for the next holiday?",
|
| 35 |
"What gifts did you receive last Christmas/Hanukkah?",
|
| 36 |
+
"Who is your favorite actor or actress? ",
|
| 37 |
+
"What was your impression of your university when you first came to it?",
|
| 38 |
+
"What is the best TV show you have seen in the past month? Describe it a little bit.",
|
| 39 |
"What is your favorite holiday? Why?"
|
| 40 |
]
|
| 41 |
NORMAL_SET_III = [
|
| 42 |
"Where did you go to high school? What was it like?",
|
| 43 |
+
"What is the best book you have read in the past three months? Describe it a little bit.",
|
| 44 |
"What country would you most like to visit? What attracts you to it?",
|
| 45 |
"Do you prefer digital or analog watches/clocks? Why?",
|
| 46 |
+
"Can you think of someone your mother or father is really close to? What do you think makes their friendship special?"
|
| 47 |
"What are the pros and cons of artificial Christmas trees?",
|
| 48 |
"How often do you get your hair cut? Where do you go? Have you ever had a bad haircut?",
|
| 49 |
"Did you have a class pet in elementary school? Do you remember its name?",
|
|
|
|
| 53 |
"Have you ever participated in a school play? What role did you play? What was the plot? Did anything funny happen during the play?"
|
| 54 |
]
|
| 55 |
|
| 56 |
+
|
| 57 |
def generate_question_set():
|
| 58 |
return random.sample(NORMAL_SET_I, 3) + random.sample(NORMAL_SET_II, 3) + random.sample(NORMAL_SET_III, 3)
|
| 59 |
|