Add application files
Browse files- intensity.json +80 -0
intensity.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "ask_about_person_organize",
|
| 4 |
+
"description": "Use this function when a user's question is about personal information pertaining to individuals or an organization that is not related to parenting topics."
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"name": "normal_talk_irrelevant_to_parenting",
|
| 8 |
+
"description": "Use this function when a user's message is a normal dialogue conversation, talk, or a question about a topic that is not related to parenting, children, or kids."
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"name": "check_childs_weight_height_with_age",
|
| 12 |
+
"parameters": {
|
| 13 |
+
"type": "object",
|
| 14 |
+
"properties": {
|
| 15 |
+
"gender": {
|
| 16 |
+
"type": "string",
|
| 17 |
+
"description": "The gender of the child. If the user's child is a son, boy, or male, then the gender value returned is 'male'. If the user's child is a girl, the gender value returned is 'female'. Otherwise, return null."
|
| 18 |
+
},
|
| 19 |
+
"years_old": {
|
| 20 |
+
"type": "integer",
|
| 21 |
+
"description": "The number of years old given. If the user doesn't specify the age in years, it is set to 0 by default. Example: if the user says 5 months old, then years_old is 0, and months_old is 5."
|
| 22 |
+
},
|
| 23 |
+
"months_old": {
|
| 24 |
+
"type": "integer",
|
| 25 |
+
"description": "The number of months old given. If the user doesn't specify the age in months, it is set to 0 by default. Example: if the user says 3 years and 11 months old, then years_old is 3, and months_old is 11."
|
| 26 |
+
},
|
| 27 |
+
"height": {
|
| 28 |
+
"type": "number",
|
| 29 |
+
"description": "The child's height measured in centimeters (cm). If the user doesn't specify the height, it is set to null."
|
| 30 |
+
},
|
| 31 |
+
"weight": {
|
| 32 |
+
"type": "number",
|
| 33 |
+
"description": "The child's weight measured in kilograms (kg). If the user doesn't specify the weight, it is set to null."
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
},
|
| 37 |
+
"description": "This function assesses a child's weight and height based on age and gender. The user can provide the child's age, height, and weight to determine if they fall within a healthy range."
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"name": "detect_anomaly_milestone_growth_by_age",
|
| 41 |
+
"parameters": {
|
| 42 |
+
"type": "object",
|
| 43 |
+
"properties": {
|
| 44 |
+
"anomaly_category": {
|
| 45 |
+
"type": "string",
|
| 46 |
+
"description": "The category of anomaly the user's child encounters. One of the values: 'physical', 'mental', or 'others'."
|
| 47 |
+
}
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
"description": "Parents worry about their child's development compared to the general development of their peers of the same age."
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"name": "children_games",
|
| 54 |
+
"description": "The user's question asks for suggestions of games or activities to play with their children during the summer, as well as alternatives to screen time."
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"name": "get_parenting_tips",
|
| 58 |
+
"description": "This function offers guidance on various parenting topics, including handling situations where children disobey or misbehave."
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"name": "general_parenting_questions",
|
| 62 |
+
"description": "This function tackles any broader questions related to parenting and raising children. Telling stories to children is also an example."
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"name": "get_current_date_time",
|
| 66 |
+
"description": "Use this function when a user's question is about the current date and time."
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"name": "history_question",
|
| 70 |
+
"description": "Use this function when a user's question is about history."
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"name": "toxic_violence",
|
| 74 |
+
"description": "The user's question may potentially contain toxic, violent, or otherwise unsafe content for children."
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"name": "sensitive_politic",
|
| 78 |
+
"description": "Use this function when a user's question is about politics."
|
| 79 |
+
}
|
| 80 |
+
]
|