Spaces:
Paused
Paused
File size: 6,104 Bytes
7ed2180 | 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 | {
"symptom_follow_ups": {
"cramps": {
"message": "Let me know how you're feeling tomorrow, honey — cramps can change fast.",
"check_in_hours": 24,
"escalation_triggers": [
"severe pain",
"not improving",
"getting worse",
"can't function"
],
"escalation_message": "If the pain gets worse or you can't manage it, let's get you connected with a provider right away, dear.",
"resource_links": ["pain_management", "emergency_signs"]
},
"discharge": {
"message": "Keep an eye on it, sweetheart. If anything else changes, I'll help you get seen.",
"check_in_hours": 48,
"escalation_triggers": [
"odor",
"increased",
"color change",
"itching",
"burning"
],
"escalation_message": "Those changes could mean an infection, boo. Let me help you schedule an appointment to get that checked out.",
"resource_links": ["vaginal_health", "infection_signs"]
},
"fatigue": {
"message": "Be gentle with yourself, honey. Want me to nudge you to rest later?",
"check_in_hours": 48,
"escalation_triggers": [
"extreme tiredness",
"can't get out of bed",
"dizzy",
"fainting"
],
"escalation_message": "That level of exhaustion isn't normal, dear. Let's get you checked for anemia or other causes.",
"resource_links": ["energy_tips", "anemia_info"]
},
"mood": {
"message": "You're not alone, love — your feelings are valid. I'm here if you need me.",
"check_in_hours": 24,
"escalation_triggers": [
"can't stop crying",
"hurting myself",
"suicidal",
"hopeless",
"can't function"
],
"escalation_message": "What you're feeling sounds really hard, sweetheart. I want to connect you with someone who can really help — would that be okay?",
"crisis_hotline": "988",
"resource_links": ["mental_health_support", "crisis_resources"]
},
"missed_period": {
"message": "Keep track of any symptoms, boo. I can check back with you in a few days.",
"check_in_hours": 72,
"escalation_triggers": [
"two months",
"pregnant",
"test positive",
"severe symptoms"
],
"escalation_message": "Let's get you scheduled with a provider to figure out what's going on, honey.",
"resource_links": ["pregnancy_testing", "cycle_tracking"]
},
"bleeding": {
"message": "I'll check in with you tomorrow, dear. Heavy bleeding can be concerning.",
"check_in_hours": 24,
"escalation_triggers": [
"soaking through",
"clots larger than quarter",
"dizzy",
"very heavy",
"hemorrhaging"
],
"escalation_message": "That sounds like heavy bleeding, honey. If you're soaking through pads every hour, you need to be seen right away or go to the ER.",
"emergency": true,
"resource_links": ["heavy_bleeding", "emergency_signs"]
},
"nausea": {
"message": "Hope you're feeling better soon, sweetheart. Let me know if it keeps up.",
"check_in_hours": 48,
"escalation_triggers": [
"can't keep food down",
"dehydrated",
"vomiting blood",
"severe"
],
"escalation_message": "If you can't keep anything down, you might need IV fluids, boo. Let's get you seen.",
"resource_links": ["nausea_relief", "dehydration_signs"]
},
"pain": {
"message": "I'm here if the pain doesn't ease up, dear. Take care of yourself.",
"check_in_hours": 24,
"escalation_triggers": [
"severe",
"unbearable",
"sharp pain",
"sudden pain",
"emergency"
],
"escalation_message": "Severe pain always needs attention, honey. Let me help you get seen quickly.",
"emergency_threshold": "severe_or_sudden",
"resource_links": ["pain_management", "when_to_worry"]
}
},
"appointment_follow_ups": {
"post_appointment": {
"message": "Hey honey! How did your appointment go? I'm here if you have any questions about what the provider said.",
"check_in_hours": 24,
"suggested_actions": [
"review_instructions",
"schedule_follow_up",
"fill_prescriptions"
]
},
"test_results_pending": {
"message": "Just checking in, dear. Have your test results come back yet? I can help you understand them.",
"check_in_hours": 72,
"suggested_actions": [
"check_patient_portal",
"call_office",
"schedule_results_discussion"
]
},
"medication_start": {
"message": "How are you doing with the new medication, sweetheart? Any side effects I should know about?",
"check_in_hours": 48,
"suggested_actions": [
"track_side_effects",
"report_concerns",
"refill_reminder"
]
}
},
"general_support": {
"check_in": {
"message": "Hey boo, just checking in! How are you feeling today?",
"check_in_hours": 168,
"purpose": "wellness_check"
},
"resource_sent": {
"message": "Did those resources I shared help you out, honey? Let me know if you need anything else.",
"check_in_hours": 48,
"purpose": "resource_effectiveness"
},
"appointment_reminder": {
"message": "Hey dear! Just a reminder you've got an appointment coming up. Need any help preparing?",
"check_in_hours": 24,
"suggested_actions": [
"write_questions",
"bring_medications_list",
"fasting_if_needed"
]
}
},
"follow_up_settings": {
"max_follow_ups": 3,
"respect_do_not_disturb": true,
"preferred_contact_hours": {
"start": "09:00",
"end": "20:00"
},
"timezone": "America/New_York",
"allow_user_snooze": true,
"snooze_duration_hours": 12
}
} |