vineelagampa commited on
Commit
1dfb0d8
·
verified ·
1 Parent(s): e3dd97e

Update disease_steps.py

Browse files
Files changed (1) hide show
  1. disease_steps.py +294 -49
disease_steps.py CHANGED
@@ -1,11 +1,11 @@
1
  disease_next_steps = {
2
- "asthma": [
3
- "Schedule lung function testing.",
4
- "Review and practice correct inhaler technique.",
5
- "Identify and avoid environmental triggers.",
6
- "Develop a written asthma action plan."
7
  ],
8
- "heart disease": [
9
  "Schedule ECG and echocardiogram.",
10
  "Check cholesterol and lipid profile.",
11
  "Adopt a heart-healthy diet with reduced sodium.",
@@ -17,6 +17,12 @@ disease_next_steps = {
17
  "Consult a dietitian for meal planning.",
18
  "Start regular physical activity tailored to needs."
19
  ],
 
 
 
 
 
 
20
  "hypertension": [
21
  "Measure blood pressure at home daily.",
22
  "Reduce salt and processed food intake.",
@@ -29,35 +35,11 @@ disease_next_steps = {
29
  "Enroll in a stroke rehabilitation program.",
30
  "Review and manage risk factors to prevent recurrence."
31
  ],
32
- "cancer": [
33
- "Schedule oncologist consultation for staging.",
34
- "Obtain biopsy and necessary imaging.",
35
- "Discuss chemotherapy, radiation, or surgery options.",
36
- "Plan supportive care, including nutrition and counseling."
37
- ],
38
- "tuberculosis": [
39
- "Get diagnostic tests: sputum test and chest X-ray.",
40
- "Start multi-drug antibiotic therapy as prescribed.",
41
- "Adhere strictly to the full treatment duration.",
42
- "Schedule monthly follow-up visits for monitoring."
43
- ],
44
- "pneumonia": [
45
- "Obtain chest X-ray if symptoms are severe.",
46
- "Start antibiotics if bacterial pneumonia is diagnosed.",
47
- "Maintain adequate hydration and rest.",
48
- "Monitor breathing and oxygen levels if advised."
49
- ],
50
- "bronchitis": [
51
- "Avoid smoking and exposure to lung irritants.",
52
- "Use bronchodilators or inhalers if prescribed.",
53
- "Stay well hydrated with warm fluids.",
54
- "Monitor for worsening cough or shortness of breath."
55
- ],
56
- "copd": [
57
- "Schedule spirometry testing to assess lung function.",
58
- "Start maintenance inhalers or nebulizer therapy.",
59
- "Enroll in a pulmonary rehabilitation program.",
60
- "Avoid exposure to pollutants and secondhand smoke."
61
  ],
62
  "arthritis": [
63
  "Schedule rheumatology consultation for management plan.",
@@ -71,6 +53,12 @@ disease_next_steps = {
71
  "Use prescribed acute pain relief as needed.",
72
  "Practice stress reduction techniques like mindfulness."
73
  ],
 
 
 
 
 
 
74
  "anemia": [
75
  "Get blood tests for iron, B12, and folate levels.",
76
  "Begin iron or vitamin supplementation if indicated.",
@@ -107,7 +95,7 @@ disease_next_steps = {
107
  "Coordinate school-based support services.",
108
  "Educate caregivers about autism spectrum strategies."
109
  ],
110
- "parkinson's disease": [
111
  "Conduct neurological evaluation for symptom assessment.",
112
  "Discuss initiation of dopaminergic therapy.",
113
  "Begin physical and occupational therapy.",
@@ -125,35 +113,41 @@ disease_next_steps = {
125
  "Monitor intraocular pressure at regular intervals.",
126
  "Consider laser or surgical options if indicated."
127
  ],
 
 
 
 
 
 
128
  "hepatitis": [
129
  "Get liver function tests and hepatitis panel.",
130
  "Determine hepatitis type (A, B, C).",
131
  "Discuss antiviral therapy options if needed.",
132
  "Schedule regular monitoring for liver damage."
133
  ],
134
- "kidney disease": [
135
  "Schedule nephrology consultation for staging.",
136
  "Check blood creatinine and GFR levels.",
137
  "Implement dietary changes to reduce sodium and protein.",
138
  "Monitor blood pressure closely."
139
  ],
140
- "thyroid disorder": [
141
  "Get TSH, T3, and T4 blood tests.",
142
  "Begin thyroid hormone replacement if indicated.",
143
  "Monitor symptoms and medication side effects.",
144
  "Schedule endocrinology follow-up for dose adjustments."
145
  ],
146
- "hiv/aids": [
147
  "Get confirmatory HIV testing with viral load.",
148
  "Start antiretroviral therapy immediately.",
149
  "Monitor CD4 count and viral load regularly.",
150
  "Counsel on safe sexual practices and transmission prevention."
151
  ],
152
- "dengue": [
153
- "Get blood tests to confirm diagnosis.",
154
- "Monitor platelet counts daily if hospitalized.",
155
- "Maintain strict hydration.",
156
- "Seek immediate care if bleeding or severe abdominal pain develops."
157
  ],
158
  "malaria": [
159
  "Get diagnostic blood smear or rapid test.",
@@ -161,13 +155,264 @@ disease_next_steps = {
161
  "Monitor for complications like anemia or cerebral malaria.",
162
  "Educate on prevention with bed nets and repellents."
163
  ],
164
- "covid-19": [
 
 
 
 
 
 
 
 
 
 
 
 
165
  "Get confirmatory PCR or antigen testing.",
166
  "Isolate to prevent spread to others.",
167
  "Monitor symptoms and oxygen saturation at home.",
168
  "Seek emergency care if breathing difficulty or chest pain occurs."
169
  ],
170
- "unknown": [
171
- "Could not recognize disease"
172
- ]
173
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  disease_next_steps = {
2
+ "tumor": [
3
+ "Schedule oncologist consultation for diagnosis.",
4
+ "Obtain biopsy and imaging for tumor characterization.",
5
+ "Discuss treatment options including surgery or chemotherapy.",
6
+ "Plan supportive care and monitoring for complications."
7
  ],
8
+ "heart": [
9
  "Schedule ECG and echocardiogram.",
10
  "Check cholesterol and lipid profile.",
11
  "Adopt a heart-healthy diet with reduced sodium.",
 
17
  "Consult a dietitian for meal planning.",
18
  "Start regular physical activity tailored to needs."
19
  ],
20
+ "cancer": [
21
+ "Schedule oncologist consultation for staging.",
22
+ "Obtain biopsy and necessary imaging.",
23
+ "Discuss chemotherapy, radiation, or surgery options.",
24
+ "Plan supportive care, including nutrition and counseling."
25
+ ],
26
  "hypertension": [
27
  "Measure blood pressure at home daily.",
28
  "Reduce salt and processed food intake.",
 
35
  "Enroll in a stroke rehabilitation program.",
36
  "Review and manage risk factors to prevent recurrence."
37
  ],
38
+ "asthma": [
39
+ "Schedule lung function testing.",
40
+ "Review and practice correct inhaler technique.",
41
+ "Identify and avoid environmental triggers.",
42
+ "Develop a written asthma action plan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  ],
44
  "arthritis": [
45
  "Schedule rheumatology consultation for management plan.",
 
53
  "Use prescribed acute pain relief as needed.",
54
  "Practice stress reduction techniques like mindfulness."
55
  ],
56
+ "depression": [
57
+ "Schedule mental health evaluation.",
58
+ "Discuss therapy options such as CBT or counseling.",
59
+ "Consider antidepressant medication if indicated.",
60
+ "Monitor mood and symptoms regularly."
61
+ ],
62
  "anemia": [
63
  "Get blood tests for iron, B12, and folate levels.",
64
  "Begin iron or vitamin supplementation if indicated.",
 
95
  "Coordinate school-based support services.",
96
  "Educate caregivers about autism spectrum strategies."
97
  ],
98
+ "parkinson": [
99
  "Conduct neurological evaluation for symptom assessment.",
100
  "Discuss initiation of dopaminergic therapy.",
101
  "Begin physical and occupational therapy.",
 
113
  "Monitor intraocular pressure at regular intervals.",
114
  "Consider laser or surgical options if indicated."
115
  ],
116
+ "sclerosis": [
117
+ "Schedule neurology evaluation for symptom assessment.",
118
+ "Consider disease-modifying therapy if indicated.",
119
+ "Begin physical and occupational therapy.",
120
+ "Monitor disease progression with regular follow-up."
121
+ ],
122
  "hepatitis": [
123
  "Get liver function tests and hepatitis panel.",
124
  "Determine hepatitis type (A, B, C).",
125
  "Discuss antiviral therapy options if needed.",
126
  "Schedule regular monitoring for liver damage."
127
  ],
128
+ "kidney": [
129
  "Schedule nephrology consultation for staging.",
130
  "Check blood creatinine and GFR levels.",
131
  "Implement dietary changes to reduce sodium and protein.",
132
  "Monitor blood pressure closely."
133
  ],
134
+ "thyroid": [
135
  "Get TSH, T3, and T4 blood tests.",
136
  "Begin thyroid hormone replacement if indicated.",
137
  "Monitor symptoms and medication side effects.",
138
  "Schedule endocrinology follow-up for dose adjustments."
139
  ],
140
+ "HIV": [
141
  "Get confirmatory HIV testing with viral load.",
142
  "Start antiretroviral therapy immediately.",
143
  "Monitor CD4 count and viral load regularly.",
144
  "Counsel on safe sexual practices and transmission prevention."
145
  ],
146
+ "AIDS": [
147
+ "Get confirmatory HIV testing with viral load.",
148
+ "Start antiretroviral therapy immediately.",
149
+ "Monitor CD4 count and viral load regularly.",
150
+ "Counsel on safe sexual practices and transmission prevention."
151
  ],
152
  "malaria": [
153
  "Get diagnostic blood smear or rapid test.",
 
155
  "Monitor for complications like anemia or cerebral malaria.",
156
  "Educate on prevention with bed nets and repellents."
157
  ],
158
+ "tuberculosis": [
159
+ "Get diagnostic tests: sputum test and chest X-ray.",
160
+ "Start multi-drug antibiotic therapy as prescribed.",
161
+ "Adhere strictly to the full treatment duration.",
162
+ "Schedule monthly follow-up visits for monitoring."
163
+ ],
164
+ "chickenpox": [
165
+ "Confirm diagnosis and isolate to prevent spread.",
166
+ "Take antiviral medication if prescribed.",
167
+ "Relieve itching with calamine lotion or oatmeal baths.",
168
+ "Monitor for complications such as bacterial skin infection."
169
+ ],
170
+ "covid19": [
171
  "Get confirmatory PCR or antigen testing.",
172
  "Isolate to prevent spread to others.",
173
  "Monitor symptoms and oxygen saturation at home.",
174
  "Seek emergency care if breathing difficulty or chest pain occurs."
175
  ],
176
+ "influenza": [
177
+ "Get rapid influenza testing if needed.",
178
+ "Start antiviral medication if within treatment window.",
179
+ "Rest, hydrate, and manage fever with acetaminophen.",
180
+ "Monitor for respiratory complications or worsening symptoms."
181
+ ],
182
+ "smallpox": [
183
+ "Seek emergency medical care immediately.",
184
+ "Implement strict isolation precautions.",
185
+ "Report to public health authorities.",
186
+ "Supportive care for symptoms and potential antiviral therapy."
187
+ ],
188
+ "measles": [
189
+ "Confirm diagnosis with serology or PCR testing.",
190
+ "Isolate to prevent transmission.",
191
+ "Manage symptoms with supportive care (fluids, fever control).",
192
+ "Monitor for complications like pneumonia or encephalitis."
193
+ ],
194
+ "polio": [
195
+ "Confirm diagnosis via stool or throat sample testing.",
196
+ "Supportive care for symptom management.",
197
+ "Implement physical therapy if paralysis occurs.",
198
+ "Monitor respiratory function and prevent complications."
199
+ ],
200
+ "cholera": [
201
+ "Immediate oral or IV rehydration therapy.",
202
+ "Start antibiotics if indicated.",
203
+ "Maintain strict hygiene to prevent spread.",
204
+ "Monitor electrolytes and kidney function closely."
205
+ ],
206
+ "botulism": [
207
+ "Seek emergency medical care immediately.",
208
+ "Administer botulinum antitoxin if indicated.",
209
+ "Provide supportive care for breathing and swallowing.",
210
+ "Monitor for complications in ICU if needed."
211
+ ],
212
+ "lyme disease": [
213
+ "Confirm diagnosis with serology or clinical evaluation.",
214
+ "Start appropriate antibiotic therapy.",
215
+ "Monitor for progression or neurological involvement.",
216
+ "Educate on tick avoidance and preventive measures."
217
+ ],
218
+ "dengue fever": [
219
+ "Confirm diagnosis with blood tests.",
220
+ "Monitor platelet counts daily if hospitalized.",
221
+ "Maintain strict hydration.",
222
+ "Seek immediate care if bleeding, severe abdominal pain, or persistent vomiting develops."
223
+ ],
224
+ "typhoid": [
225
+ "Confirm diagnosis with blood or stool culture.",
226
+ "Start appropriate antibiotic therapy.",
227
+ "Maintain hydration and proper nutrition.",
228
+ "Monitor for complications like intestinal perforation."
229
+ ],
230
+ "herpes simplex": [
231
+ "Confirm diagnosis with PCR or culture if needed.",
232
+ "Start antiviral therapy if indicated.",
233
+ "Educate on preventing transmission to others.",
234
+ "Monitor for recurrent outbreaks and manage symptoms."
235
+ ],
236
+ "herpes zoster": [
237
+ "Confirm diagnosis clinically or with PCR.",
238
+ "Start antiviral therapy within 72 hours of rash onset.",
239
+ "Relieve pain with analgesics or topical treatments.",
240
+ "Monitor for complications like postherpetic neuralgia."
241
+ ],
242
+ "chronic fatigue syndrome": [
243
+ "Conduct comprehensive evaluation to rule out other causes.",
244
+ "Develop pacing strategies for daily activities.",
245
+ "Consider cognitive behavioral therapy and graded exercise therapy.",
246
+ "Monitor symptom progression and adjust management plan accordingly."
247
+ ],
248
+ "fibromyalgia": [
249
+ "Confirm diagnosis based on clinical criteria.",
250
+ "Start pharmacologic management for pain and sleep disturbances.",
251
+ "Encourage low-impact exercise and physical therapy.",
252
+ "Implement stress reduction techniques and support counseling."
253
+ ],
254
+ "sleep apnea": [
255
+ "Schedule overnight sleep study (polysomnography).",
256
+ "Consider CPAP therapy or dental appliance for airway support.",
257
+ "Evaluate for weight loss or lifestyle modification needs.",
258
+ "Monitor symptoms and adherence to treatment regularly."
259
+ ],
260
+ "narcolepsy": [
261
+ "Schedule sleep study with multiple sleep latency testing.",
262
+ "Start stimulant or wakefulness-promoting medications as indicated.",
263
+ "Educate about safety measures and scheduled naps.",
264
+ "Monitor symptoms and adjust treatment as needed."
265
+ ],
266
+ "insomnia": [
267
+ "Identify underlying causes and contributing factors.",
268
+ "Implement sleep hygiene strategies.",
269
+ "Consider cognitive behavioral therapy for insomnia.",
270
+ "Start pharmacologic treatment if indicated and monitor effects."
271
+ ],
272
+ "meningitis": [
273
+ "Seek urgent medical evaluation and lumbar puncture for diagnosis.",
274
+ "Start empiric antibiotics if bacterial meningitis suspected.",
275
+ "Provide supportive care for hydration and symptom management.",
276
+ "Monitor for complications and follow-up after treatment."
277
+ ],
278
+ "encephalitis": [
279
+ "Confirm diagnosis with MRI and CSF analysis.",
280
+ "Start antiviral or supportive therapy as indicated.",
281
+ "Monitor neurological status closely in hospital setting.",
282
+ "Provide rehabilitation for residual neurological deficits."
283
+ ],
284
+ "brain abscess": [
285
+ "Confirm diagnosis with imaging (CT or MRI).",
286
+ "Start intravenous antibiotics promptly.",
287
+ "Consider surgical drainage if indicated.",
288
+ "Monitor for neurological deterioration and follow-up imaging."
289
+ ],
290
+ "spinal cord infection": [
291
+ "Obtain MRI and laboratory testing for confirmation.",
292
+ "Start targeted antimicrobial therapy.",
293
+ "Monitor neurological function closely.",
294
+ "Consider surgical intervention if abscess or compression occurs."
295
+ ],
296
+ "Guillain-Barré syndrome": [
297
+ "Hospitalize for monitoring of respiratory function.",
298
+ "Start intravenous immunoglobulin (IVIG) or plasma exchange therapy.",
299
+ "Monitor motor strength and autonomic function closely.",
300
+ "Provide rehabilitation for recovery of mobility and function."
301
+ ],
302
+ "toxoplasmosis": [
303
+ "Confirm diagnosis via serology or PCR testing.",
304
+ "Start antiparasitic therapy if indicated.",
305
+ "Monitor for neurological or ocular complications.",
306
+ "Educate immunocompromised patients about prevention measures."
307
+ ],
308
+ "pericarditis": [
309
+ "Obtain ECG, echocardiogram, and inflammatory markers.",
310
+ "Start anti-inflammatory therapy (NSAIDs or colchicine).",
311
+ "Monitor for complications like pericardial effusion.",
312
+ "Schedule follow-up evaluation with cardiologist."
313
+ ],
314
+ "sjogren’s syndrome": [
315
+ "Confirm diagnosis with blood tests and salivary/lacrimal gland evaluation.",
316
+ "Start symptomatic treatment for dry eyes and mouth.",
317
+ "Consider immunomodulatory therapy if systemic involvement exists.",
318
+ "Schedule regular follow-up with rheumatologist."
319
+ ],
320
+ "trigeminal neuralgia": [
321
+ "Confirm diagnosis clinically and rule out secondary causes with imaging.",
322
+ "Start anticonvulsant therapy for pain relief.",
323
+ "Consider surgical intervention if medical therapy fails.",
324
+ "Monitor pain frequency and medication side effects."
325
+ ],
326
+ "rectal cancer": [
327
+ "Schedule colonoscopy and imaging for staging.",
328
+ "Discuss surgery, chemotherapy, and/or radiation options.",
329
+ "Implement supportive care including nutrition and counseling.",
330
+ "Schedule regular follow-up for surveillance and recurrence prevention."
331
+ ],
332
+ "cardiac": [
333
+ "Schedule ECG and echocardiogram.",
334
+ "Check cholesterol and lipid profile.",
335
+ "Monitor blood pressure regularly.",
336
+ "Adopt a heart-healthy diet with reduced sodium and saturated fats.",
337
+ "Discuss stress testing with your cardiologist."
338
+ ],
339
+ "inflammation": [
340
+ "Order CRP and ESR blood tests.",
341
+ "Evaluate for autoimmune markers (ANA, RF).",
342
+ "Rule out chronic infections or inflammatory diseases.",
343
+ "Adopt an anti-inflammatory diet rich in omega-3 fatty acids."
344
+ ],
345
+ "vitamin": [
346
+ "Check vitamin D, B12, folate, and iron levels.",
347
+ "Review dietary intake and consider supplementation.",
348
+ "Encourage sun exposure (for vitamin D).",
349
+ "Monitor for symptoms of deficiency (fatigue, neuropathy, anemia)."
350
+ ],
351
+ "electrolyte": [
352
+ "Check sodium, potassium, calcium, magnesium, and chloride levels.",
353
+ "Assess hydration status.",
354
+ "Review medications that affect electrolyte balance (diuretics, ACE inhibitors).",
355
+ "Provide supplementation or restriction based on results."
356
+ ],
357
+ "blood-pressure": [
358
+ "Monitor blood pressure at home daily.",
359
+ "Limit sodium intake and processed foods.",
360
+ "Increase physical activity with regular aerobic exercise.",
361
+ "Discuss antihypertensive medications if readings remain high."
362
+ ],
363
+ "cbc": [
364
+ "Review hemoglobin, WBC, and platelet counts.",
365
+ "Screen for anemia if hemoglobin is low.",
366
+ "Investigate infection or inflammation if WBC is elevated.",
367
+ "Consider hematology referral for abnormal platelet counts."
368
+ ],
369
+ "iron": [
370
+ "Check serum ferritin and iron studies.",
371
+ "Screen for anemia and fatigue symptoms.",
372
+ "Assess diet for iron intake (red meat, leafy greens).",
373
+ "Consider iron supplementation if levels are low."
374
+ ],
375
+ "liver": [
376
+ "Order liver function tests (ALT, AST, bilirubin).",
377
+ "Screen for viral hepatitis.",
378
+ "Assess alcohol intake and metabolic syndrome.",
379
+ "Consider liver ultrasound for persistent abnormalities."
380
+ ],
381
+ "respiratory": [
382
+ "Check oxygen saturation and respiratory rate.",
383
+ "Evaluate for asthma, COPD, or pneumonia symptoms.",
384
+ "Order chest X-ray or pulmonary function tests if indicated.",
385
+ "Encourage smoking cessation and vaccination (flu, pneumonia)."
386
+ ],
387
+ "coagulation": [
388
+ "Order PT/INR and aPTT tests.",
389
+ "Screen for bleeding or clotting disorders.",
390
+ "Review medication history (warfarin, heparin, DOACs).",
391
+ "Consult hematology if abnormal results persist."
392
+ ],
393
+ "hormone": [
394
+ "Check thyroid function tests (TSH, T3, T4).",
395
+ "Screen for cortisol, testosterone, and estrogen imbalances.",
396
+ "Evaluate symptoms of hormonal deficiency or excess.",
397
+ "Refer to endocrinology for persistent abnormalities."
398
+ ],
399
+ "infection": [
400
+ "Order CBC with differential for infection signs.",
401
+ "Screen for specific infections (HIV, TB, hepatitis, COVID-19).",
402
+ "Monitor temperature and vital signs.",
403
+ "Start empiric antibiotics if clinically indicated."
404
+ ],
405
+ "blood-gas": [
406
+ "Order arterial blood gas (ABG) test.",
407
+ "Check pH, PaCO₂, and bicarbonate levels.",
408
+ "Differentiate between respiratory and metabolic causes.",
409
+ "Provide oxygen or ventilation support as needed."
410
+ ],
411
+ "vitals": [
412
+ "Record temperature, blood pressure, heart rate, respiratory rate, and oxygen saturation.",
413
+ "Establish baseline and monitor trends.",
414
+ "Identify abnormal values early for intervention.",
415
+ "Reassess regularly in acute and chronic conditions."
416
+ ]
417
+ }
418
+