Spaces:
Running
Running
File size: 13,751 Bytes
7c0570f | 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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | """
structured_output.py β Build the final structured API response (Task Group D).
Takes outputs from ALL pipeline stages and produces a single, clean, frontend-friendly
JSON structure. This is the "final word" β the frontend can render from this one object
without needing priority fallback logic.
Input sources:
- Classifier result (YOLO-cls top-5)
- Rule engine result (scored candidates, conflicts, rejections)
- Reasoning engine result (diagnosis, chain, differential)
- LLM validation (agree/disagree, agreement score, scenario)
- Confidence fusion (weighted multi-signal confidence)
Output: A single dict with clean sections:
- diagnosis: disease name + fused confidence + grade
- health: score + risk + urgency + yield loss
- confidence_breakdown: per-source scores + weights
- reasoning: step-by-step chain
- evidence: supporting + contradicting features
- rejected: diseases ruled out with reasons
- differential: alternative diagnoses
- treatment: recommendations + urgency + products
- metadata: models used, agreement, timing, version
"""
from __future__ import annotations
from loguru import logger
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Confidence grading
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _confidence_grade(conf: float) -> str:
"""Map a 0.0β1.0 confidence to a human-readable grade."""
if conf >= 0.90:
return "VERY_HIGH"
if conf >= 0.75:
return "HIGH"
if conf >= 0.55:
return "MODERATE"
if conf >= 0.35:
return "LOW"
return "UNCERTAIN"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Main builder
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def build_structured_output(
classifier_result: dict | None,
reasoning_result: dict | None,
llm_validation_dict: dict | None,
confidence_fusion: dict | None,
ensemble: dict | None,
processing_time_ms: float = 0,
*,
gradcam_data: dict | None = None,
research_papers: list[dict] | None = None,
ensemble_voting: dict | None = None,
temporal_data: dict | None = None,
) -> dict:
"""Build the final structured output from all pipeline signals.
All inputs are plain dicts (already serialized from dataclasses).
Returns a clean dict ready for JSON response.
"""
# ββ 1. Diagnosis: pick the best source ββ
diagnosis = _build_diagnosis(reasoning_result, llm_validation_dict, confidence_fusion, classifier_result)
# ββ 2. Health ββ
health = _build_health(reasoning_result, llm_validation_dict, ensemble)
# ββ 3. Confidence breakdown ββ
confidence = _build_confidence_breakdown(
classifier_result, reasoning_result, llm_validation_dict, confidence_fusion
)
# ββ 4. Reasoning chain ββ
reasoning_chain = []
if reasoning_result and reasoning_result.get("reasoning_chain"):
reasoning_chain = reasoning_result["reasoning_chain"]
# ββ 5. Evidence ββ
evidence = _build_evidence(reasoning_result)
# ββ 6. Rejected diagnoses ββ
rejected = _build_rejected(reasoning_result)
# ββ 7. Differential ββ
differential = []
if reasoning_result and reasoning_result.get("differential_diagnosis"):
differential = reasoning_result["differential_diagnosis"]
# ββ 8. Treatment ββ
treatment = _build_treatment(reasoning_result, llm_validation_dict)
# ββ 9. Metadata ββ
models_used = ensemble.get("models_used", []) if ensemble else []
model_agreement = ensemble.get("model_agreement", "none") if ensemble else "none"
metadata = {
"models_used": models_used,
"model_agreement": model_agreement,
"processing_time_ms": round(processing_time_ms, 0),
"pipeline_version": "3.0",
"ensemble_note": ensemble.get("note", "") if ensemble else "",
}
result = {
"diagnosis": diagnosis,
"health": health,
"confidence_breakdown": confidence,
"reasoning_chain": reasoning_chain,
"evidence": evidence,
"rejected_diagnoses": rejected,
"differential_diagnosis": differential,
"treatment": treatment,
"metadata": metadata,
}
# ββ AI Validation (LLaVA) ββ
if llm_validation_dict:
result["ai_validation"] = {
"agrees": llm_validation_dict.get("agrees"),
"agreement_score": llm_validation_dict.get("agreement_score"),
"llm_diagnosis": llm_validation_dict.get("llm_diagnosis"),
"scenario": llm_validation_dict.get("scenario"),
"reasoning_text": llm_validation_dict.get("reasoning_text", ""),
"health_score": llm_validation_dict.get("health_score"),
"risk_level": llm_validation_dict.get("risk_level"),
"model": "LLaVA",
}
# ββ F1: Grad-CAM heatmap ββ
if gradcam_data:
result["gradcam"] = gradcam_data
# ββ F2: Research papers ββ
if research_papers:
result["research_papers"] = research_papers
# ββ F3: Ensemble voting details ββ
if ensemble_voting:
result["ensemble_voting"] = ensemble_voting
# ββ F4: Temporal tracking ββ
if temporal_data:
result["temporal"] = temporal_data
# ββ F5: Spectral analysis ββ
if reasoning_result and reasoning_result.get("spectral_analysis"):
result["spectral_analysis"] = reasoning_result["spectral_analysis"]
return result
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Section builders
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_diagnosis(
reasoning: dict | None,
llm_val: dict | None,
fusion: dict | None,
classifier: dict | None,
) -> dict:
"""Build the diagnosis section β single best answer."""
# Primary confidence comes from fusion if available
fused_conf = fusion.get("fused_confidence", 0) if fusion else None
# Disease name from reasoning engine (most reliable)
if reasoning and reasoning.get("disease_key"):
disease_key = reasoning["disease_key"]
disease_name = reasoning.get("disease_name", disease_key)
base_conf = reasoning.get("confidence", 0)
elif classifier:
disease_key = classifier.get("top5", [{}])[0].get("class_key", "unknown")
disease_name = classifier.get("top_prediction", "Unknown")
base_conf = classifier.get("top_confidence", 0)
else:
disease_key = "unknown"
disease_name = "Unknown"
base_conf = 0
# Use fused confidence if available, otherwise fall back to reasoning confidence
final_conf = fused_conf if fused_conf is not None else base_conf
# LLM validation enrichment
llm_agrees = None
llm_alt_diagnosis = None
if llm_val:
llm_agrees = llm_val.get("agrees")
if not llm_agrees and llm_val.get("llm_diagnosis"):
llm_alt_diagnosis = llm_val["llm_diagnosis"]
return {
"disease_key": disease_key,
"disease_name": disease_name,
"confidence": round(final_conf, 3),
"confidence_grade": _confidence_grade(final_conf),
"is_healthy": disease_key.startswith("healthy"),
"llm_agrees": llm_agrees,
"llm_alt_diagnosis": llm_alt_diagnosis,
}
def _build_health(
reasoning: dict | None,
llm_val: dict | None,
ensemble: dict | None,
) -> dict:
"""Build the health section."""
# Priority: ensemble > reasoning > llm > default
if ensemble and ensemble.get("ensemble_health_score") is not None:
score = ensemble["ensemble_health_score"]
risk = ensemble.get("ensemble_risk_level", "medium")
elif reasoning:
score = reasoning.get("health_score", 50)
risk = reasoning.get("risk_level", "medium")
elif llm_val:
score = llm_val.get("health_score", 50)
risk = llm_val.get("risk_level", "medium")
else:
score = 50
risk = "medium"
urgency = "within_30_days"
yield_loss = None
affected_parts = []
if reasoning:
urgency = reasoning.get("urgency", "within_30_days")
yield_loss = reasoning.get("yield_loss")
affected_parts = reasoning.get("affected_parts", [])
return {
"score": score,
"risk_level": risk,
"urgency": urgency,
"yield_loss": yield_loss,
"affected_parts": affected_parts,
}
def _build_confidence_breakdown(
classifier: dict | None,
reasoning: dict | None,
llm_val: dict | None,
fusion: dict | None,
) -> dict:
"""Build per-source confidence breakdown."""
sources = []
# Classifier source
if classifier:
cls_disease = classifier.get("top_prediction", "Unknown")
cls_conf = classifier.get("top_confidence", 0)
sources.append({
"source": "classifier",
"label": "YOLO-CLS",
"disease": cls_disease,
"score": round(cls_conf, 3),
"weight": fusion.get("weights", {}).get("classifier", 0.20) if fusion else 0.20,
})
# Rule engine source
if reasoning:
re_disease = reasoning.get("disease_name", "Unknown")
re_conf = reasoning.get("confidence", 0)
sources.append({
"source": "rule_engine",
"label": "Rule Engine",
"disease": re_disease,
"score": round(re_conf, 3),
"weight": fusion.get("weights", {}).get("rule", 0.50) if fusion else 0.50,
})
# LLM validator source
if llm_val:
llm_diag = llm_val.get("llm_diagnosis", "Unknown")
llm_score = llm_val.get("agreement_score", 0)
sources.append({
"source": "llm_validator",
"label": "LLM Validator",
"disease": llm_diag,
"score": round(llm_score, 3),
"agrees": llm_val.get("agrees", False),
"scenario": llm_val.get("scenario", ""),
"weight": fusion.get("weights", {}).get("llm", 0.30) if fusion else 0.30,
})
# Fused result
fused = fusion.get("fused_confidence", 0) if fusion else None
return {
"sources": sources,
"fused_confidence": round(fused, 3) if fused is not None else None,
"fusion_note": fusion.get("note", "") if fusion else "No fusion available",
}
def _build_evidence(reasoning: dict | None) -> dict:
"""Build evidence section from reasoning result."""
supporting = []
contradicting = []
if reasoning:
# Symptoms matched = supporting evidence
for s in reasoning.get("symptoms_matched", []):
supporting.append(s)
# Symptoms detected but not matched = observational
for s in reasoning.get("symptoms_detected", []):
if s not in supporting:
supporting.append(s)
# Conflict info β contradicting
if reasoning.get("conflict"):
c = reasoning["conflict"]
if c.get("winner") == "rules":
contradicting.append(
f"Classifier predicted {c.get('yolo_prediction', 'other disease')} "
f"({c.get('yolo_confidence', 0):.0%}) but visual evidence contradicts this"
)
return {
"supporting": supporting,
"contradicting": contradicting,
}
def _build_rejected(reasoning: dict | None) -> list:
"""Build rejected diagnoses list."""
if not reasoning or not reasoning.get("rejections"):
return []
rejected = []
for r in reasoning["rejections"]:
entry = {
"disease": r.get("disease", "Unknown"),
"reasons": r.get("reasons", []),
}
if r.get("missing_features"):
entry["missing_features"] = r["missing_features"]
if r.get("contradicting_features"):
entry["contradicting_features"] = r["contradicting_features"]
rejected.append(entry)
return rejected
def _build_treatment(
reasoning: dict | None,
llm_val: dict | None,
) -> dict:
"""Build treatment recommendations."""
recommendations = []
urgency = "within_30_days"
if reasoning:
recommendations = reasoning.get("treatment", [])
urgency = reasoning.get("urgency", "within_30_days")
# LLM may add complementary recommendations
llm_recs = []
if llm_val and llm_val.get("recommendations"):
llm_recs = llm_val["recommendations"]
# Only add LLM recs that aren't already covered
existing_lower = {r.lower() for r in recommendations}
for rec in llm_recs:
if rec.lower() not in existing_lower:
recommendations.append(rec)
return {
"recommendations": recommendations,
"urgency": urgency,
"urgency_display": urgency.replace("_", " ").title(),
}
|