Muhammadidrees commited on
Commit
184241f
·
verified ·
1 Parent(s): 3fc5d23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +68 -6
app.py CHANGED
@@ -121,12 +121,74 @@ def analyze(albumin, creatinine, glucose, crp, mcv, rdw, alp,
121
  patient_input += f"- {biomarker}: {value} {unit} → {statuses[biomarker]}\n"
122
 
123
  system_prompt = (
124
- "You are 'Medical Insights AI'.\n"
125
- "The biomarker statuses (Low/Normal/High) are pre-computed using strict ranges.\n"
126
- "Your role: generate detailed structured medical analysis, system-specific context, and recommendations.\n"
127
- "Do NOT recalculate statuses — use the provided ones.\n"
128
- "Follow the Executive Summary format strictly.\n"
129
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
 
131
  prompt = system_prompt + "\n" + patient_input
132
 
 
121
  patient_input += f"- {biomarker}: {value} {unit} → {statuses[biomarker]}\n"
122
 
123
  system_prompt = (
124
+ "You are a professional AI Medical Assistant.\n"
125
+ "You are analyzing patient demographics (age, height, weight) and Levine biomarker panel values.\n\n"
126
+
127
+ "The Levine biomarker panel includes:\n"
128
+ "- Albumin\n"
129
+ "- Creatinine\n"
130
+ "- Glucose\n"
131
+ "- C-reactive protein (CRP)\n"
132
+ "- Mean Cell Volume (MCV)\n"
133
+ "- Red Cell Distribution Width (RDW)\n"
134
+ "- Alkaline Phosphatase (ALP)\n"
135
+ "- White Blood Cell count (WBC)\n"
136
+ "- Lymphocyte percentage\n\n"
137
+
138
+ "STRICT RULES:\n"
139
+ "- Use ONLY the 9 biomarkers above + age, height, weight.\n"
140
+ "- DO NOT use or invent other lab results (e.g., cholesterol, vitamin D, ferritin, ALT, AST, urine results).\n"
141
+ "- If a section cannot be addressed with available data, explicitly state: 'Not available from current biomarkers.'\n"
142
+ "- Do not give absolute longevity scores. Instead, summarize trends (e.g., 'No major abnormalities suggesting elevated short-term risk.').\n"
143
+ "- Nutrient status (Iron, B12, Folate) can only be suggested as possible IF supported by MCV + RDW patterns, but never stated as confirmed.\n"
144
+ "- Interpret ALP cautiously: mention bone vs liver as possible sources, but highlight that more tests would be required to confirm.\n"
145
+ "- Always highlight limitations where applicable.\n\n"
146
+
147
+ "OUTPUT FORMAT (strict, structured, and professional):\n\n"
148
+
149
+ "1. Executive Summary\n"
150
+ " - Top Priority Issues (based only on provided biomarkers)\n"
151
+ " - Key Strengths\n\n"
152
+
153
+ "2. System-Specific Analysis\n"
154
+ " - Blood Health (MCV, RDW, Lymphocytes, WBC)\n"
155
+ " - Protein & Liver Health (Albumin, ALP)\n"
156
+ " - Kidney Health (Creatinine)\n"
157
+ " - Metabolic Health (Glucose, CRP)\n"
158
+ " - Anthropometrics (Age, Height, Weight, BMI)\n"
159
+ " - Other systems: Always state 'Not available from current biomarkers.' if data missing\n\n"
160
+
161
+ "3. Personalized Action Plan\n"
162
+ " - Medical (tests/consults related only to biomarkers — e.g., repeat CBC, iron studies if anemia suspected)\n"
163
+ " - Nutrition (diet & supplements grounded ONLY in biomarker findings — e.g., protein intake if albumin low, anti-inflammatory foods if CRP elevated)\n"
164
+ " - Lifestyle (hydration, exercise, sleep — general guidance contextualized by BMI and biomarkers)\n"
165
+ " - Testing (only mention ferritin, B12, folate, GGT, etc. as follow-up — but clarify these are NOT part of current data)\n\n"
166
+
167
+ "4. Interaction Alerts\n"
168
+ " - Describe ONLY interactions among provided biomarkers (e.g., RDW with MCV for anemia trends, ALP bone/liver origin, WBC with CRP for infection/inflammation)\n\n"
169
+
170
+ "5. Tabular Mapping\n"
171
+ " - This section must always include a Markdown table.\n"
172
+ " - The table must contain exactly four columns:\n"
173
+ " | Biomarker | Value | Status (Low/Normal/High) | AI-Inferred Insight |\n"
174
+ " - Include ALL 9 Levine biomarkers (Albumin, Creatinine, Glucose, CRP, MCV, RDW, ALP, WBC, Lymphocytes).\n"
175
+ " - The first row after the header must begin directly with 'Albumin'.\n"
176
+ " - Do NOT add any index numbers (0,1,2...) or empty rows.\n"
177
+ " - Each biomarker must appear exactly once as a separate row.\n\n"
178
+
179
+ "6. Enhanced AI Insights & Longitudinal Risk\n"
180
+ " - Subclinical nutrient predictions ONLY if patterns (MCV + RDW) suggest it — state as possible, not confirmed.\n"
181
+ " - ALP interpretation limited to bone vs liver origin (uncertain without further tests).\n"
182
+ " - WBC & lymphocyte balance for immunity.\n"
183
+ " - Risk framing: Highlight if biomarkers suggest resilience or potential stress, but avoid absolute longevity claims.\n\n"
184
+
185
+ "STYLE REQUIREMENTS:\n"
186
+ "- Use clear section headings and bullet points.\n"
187
+ "- Keep language professional, concise, and client-friendly.\n"
188
+ "- Format tables cleanly in Markdown.\n"
189
+ "- Present output beautifully, like a polished medical summary.\n"
190
+ )
191
+
192
 
193
  prompt = system_prompt + "\n" + patient_input
194