-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser_questions.py
83 lines (83 loc) · 2.26 KB
/
user_questions.py
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
# List of questions to gather user context
questions = [
{
"sno": 0,
"id": "food_intolerance",
"text": "Do you have any food intolerances? If yes, please list them.",
},
{
"sno": 1,
"id": "diet_preferred",
"text": "What type of diet do you prefer?",
},
{
"sno": 2,
"id": "allergies",
"text": "Do you have any known allergies? If so, could you share them?",
},
# {
# "sno": 3,
# "id": "weight",
# "text": "What is your weight (in kg)?",
# },
# {
# "sno": 4,
# "id": "activity_level",
# "text": "What is your activity level? (sedentary, lightly active, moderately active, very active)",
# },
# {
# "sno": 5,
# "id": "medical_conditions",
# "text": "Do you have any medical conditions? If yes, please specify.",
# },
# {
# "sno": 6,
# "id": "food_allergies",
# "text": "Do you have any food allergies? If yes, please list them.",
# },
# {
# "sno": 7,
# "id": "food_intolerances",
# "text": "Do you have any food intolerances? If yes, please list them.",
# },
# {
# "sno": 8,
# "id": "dietary_restrictions",
# "text": "Do you have any dietary restrictions? If yes, please specify.",
# },
# {
# "sno": 9,
# "id": "specific_diet",
# "text": "Are you following any specific diet? If yes, which one?",
# },
# {
# "sno": 10,
# "id": "fitness_goals",
# "text": "What are your fitness goals?",
# },
# {
# "sno": 11,
# "id": "nutritional_goals",
# "text": "What are your nutritional goals?",
# },
# {
# "sno": 12,
# "id": "sleeping_patterns",
# "text": "How would you describe your sleeping patterns?",
# },
# {
# "sno": 13,
# "id": "occupation",
# "text": "What is your occupation?",
# },
# {
# "sno": 14,
# "id": "stress_level",
# "text": "How would you rate your stress level on a scale of 1-10?",
# },
# {
# "sno": 15,
# "id": "exercise_routine",
# "text": "Can you describe your current exercise routine?",
# },
]