Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,6 @@ Notes:
|
|
| 16 |
* extracts JSON from VLM via regex when possible, and
|
| 17 |
* sends only the face image to the VLM (not the eye image).
|
| 18 |
"""
|
| 19 |
-
|
| 20 |
import io
|
| 21 |
import os
|
| 22 |
import uuid
|
|
@@ -36,6 +35,9 @@ from PIL import Image
|
|
| 36 |
import numpy as np
|
| 37 |
import cv2 # opencv-python-headless expected installed
|
| 38 |
|
|
|
|
|
|
|
|
|
|
| 39 |
# Optional gradio client (for VLM + LLM calls)
|
| 40 |
try:
|
| 41 |
from gradio_client import Client, handle_file # type: ignore
|
|
@@ -245,8 +247,43 @@ def extract_json_via_regex(raw_text: str) -> Dict[str, Any]:
|
|
| 245 |
}
|
| 246 |
return out
|
| 247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 248 |
# -----------------------
|
| 249 |
# Gradio / VLM helper (sends only face image, returns meta)
|
|
|
|
| 250 |
# -----------------------
|
| 251 |
def get_gradio_client_for_space(space: str) -> Client:
|
| 252 |
if not GRADIO_AVAILABLE:
|
|
@@ -266,75 +303,143 @@ def run_vlm_and_get_features(face_path: str, eye_path: Optional[str] = None, pro
|
|
| 266 |
- vlm_files_seen (int or None)
|
| 267 |
- vlm_raw_len (int)
|
| 268 |
- vlm_out_object (short repr)
|
|
|
|
| 269 |
"""
|
| 270 |
prompt = prompt or DEFAULT_VLM_PROMPT
|
| 271 |
|
| 272 |
-
|
| 273 |
if not os.path.exists(face_path):
|
| 274 |
raise FileNotFoundError(f"Face image not found at: {face_path}")
|
| 275 |
-
if not os.path.exists(eye_path):
|
| 276 |
raise FileNotFoundError(f"Eye image not found at: {eye_path}")
|
| 277 |
-
|
| 278 |
-
face_size = os.path.getsize(face_path)
|
| 279 |
-
eye_size = os.path.getsize(eye_path)
|
| 280 |
-
logger.info(f"VLM input files - Face: {face_size} bytes, Eye: {eye_size} bytes")
|
| 281 |
-
|
| 282 |
-
if face_size == 0 or eye_size == 0:
|
| 283 |
-
raise ValueError("One or both images are empty (0 bytes)")
|
| 284 |
-
|
| 285 |
-
if not GRADIO_AVAILABLE:
|
| 286 |
-
raise RuntimeError("gradio_client not available in this environment.")
|
| 287 |
|
| 288 |
-
|
| 289 |
-
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
|
| 296 |
-
|
| 297 |
-
|
| 298 |
-
|
| 299 |
-
|
| 300 |
-
logger.info(f"Calling VLM with message structure: text={len(prompt)} chars, files=2")
|
| 301 |
-
client = get_gradio_client_for_space(GRADIO_VLM_SPACE)
|
| 302 |
-
# NOTE: only send face image to the Space
|
| 303 |
|
| 304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 305 |
|
| 306 |
-
|
|
|
|
|
|
|
| 307 |
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
raise RuntimeError(f"VLM call failed: {e}")
|
| 315 |
|
| 316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
raw_text = ""
|
| 318 |
out = None
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
if isinstance(result, (list, tuple)):
|
| 323 |
-
out = result[0]
|
| 324 |
-
elif isinstance(result, dict):
|
| 325 |
out = result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 326 |
else:
|
| 327 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 328 |
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
meta["
|
| 332 |
-
|
| 333 |
-
|
| 334 |
-
except Exception:
|
| 335 |
-
meta["vlm_out_object"] = "<unreprable>"
|
| 336 |
|
| 337 |
-
|
| 338 |
|
| 339 |
# --- Check whether the remote acknowledged receiving files (expect 1) ---
|
| 340 |
files_seen = None
|
|
@@ -592,7 +697,8 @@ async def health_check():
|
|
| 592 |
"detector": impl,
|
| 593 |
"vlm_available": GRADIO_AVAILABLE,
|
| 594 |
"vlm_space": GRADIO_VLM_SPACE,
|
| 595 |
-
"llm_space": LLM_GRADIO_SPACE
|
|
|
|
| 596 |
}
|
| 597 |
|
| 598 |
@app.post("/api/v1/validate-eye-photo")
|
|
@@ -648,7 +754,7 @@ async def validate_eye_photo(image: UploadFile = File(...)):
|
|
| 648 |
is_valid = eye_openness_score >= 0.3
|
| 649 |
return {"valid": bool(is_valid), "face_detected": True, "eye_openness_score": round(eye_openness_score, 2),
|
| 650 |
"message_english": "Photo looks good! Eyes are properly open." if is_valid else "Eyes appear to be closed or partially closed. Please open your eyes wide and try again.",
|
| 651 |
-
"message_hindi": "फोटो अच्छी है! आंखें ठीक से खुली हैं।" if is_valid else "आंखें बंद या आंशिक रूप से बंद दिखाई दे रही हैं। कृपया अपनी आंखें चौड़ी खोलें और पुनः प्रयास
|
| 652 |
"eye_landmarks": {"left_eye": left_eye, "right_eye": right_eye}}
|
| 653 |
|
| 654 |
if isinstance(mtcnn, dict) and mtcnn.get("impl") == "opencv":
|
|
@@ -675,7 +781,7 @@ async def validate_eye_photo(image: UploadFile = File(...)):
|
|
| 675 |
left_eye = {"x": cx, "y": cy}
|
| 676 |
return {"valid": bool(is_valid), "face_detected": True, "eye_openness_score": round(eye_openness_score, 2),
|
| 677 |
"message_english": "Photo looks good! Eyes are detected." if is_valid else "Eyes not detected. Please open your eyes wide and try again.",
|
| 678 |
-
"message_hindi": "फोटो अच्छी है! आंखें मिलीं।" if is_valid else "आंखें नहीं मिलीं। कृपया अपनी आंखें चौड़ी खोलें और पुनः प्रयास
|
| 679 |
"eye_landmarks": {"left_eye": left_eye, "right_eye": right_eye}}
|
| 680 |
except Exception:
|
| 681 |
traceback.print_exc()
|
|
@@ -691,488 +797,17 @@ async def validate_eye_photo(image: UploadFile = File(...)):
|
|
| 691 |
"message_hindi": "छवि प्रोसेस करने में त्रुटि। कृपया पुनः प्रयास करें।",
|
| 692 |
"error": str(e)}
|
| 693 |
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
"""
|
| 703 |
-
try:
|
| 704 |
-
screening_id = str(uuid.uuid4())
|
| 705 |
-
now = datetime.utcnow().isoformat() + "Z"
|
| 706 |
-
tmp_dir = "/tmp/elderly_healthwatch"
|
| 707 |
-
os.makedirs(tmp_dir, exist_ok=True)
|
| 708 |
-
face_path = os.path.join(tmp_dir, f"{screening_id}_face.jpg")
|
| 709 |
-
eye_path = os.path.join(tmp_dir, f"{screening_id}_eye.jpg")
|
| 710 |
-
face_bytes = await face_image.read()
|
| 711 |
-
eye_bytes = await eye_image.read()
|
| 712 |
-
with open(face_path, "wb") as f:
|
| 713 |
-
f.write(face_bytes)
|
| 714 |
-
with open(eye_path, "wb") as f:
|
| 715 |
-
f.write(eye_bytes)
|
| 716 |
-
screenings_db[screening_id] = {
|
| 717 |
-
"id": screening_id,
|
| 718 |
-
"timestamp": now,
|
| 719 |
-
"face_image_path": face_path,
|
| 720 |
-
"eye_image_path": eye_path,
|
| 721 |
-
"status": "queued",
|
| 722 |
-
"quality_metrics": {},
|
| 723 |
-
"ai_results": {},
|
| 724 |
-
"disease_predictions": [],
|
| 725 |
-
"recommendations": {}
|
| 726 |
-
}
|
| 727 |
-
background_tasks.add_task(process_screening, screening_id)
|
| 728 |
-
return {"screening_id": screening_id}
|
| 729 |
-
except Exception as e:
|
| 730 |
-
traceback.print_exc()
|
| 731 |
-
raise HTTPException(status_code=500, detail=f"Failed to upload images: {e}")
|
| 732 |
-
|
| 733 |
-
@app.post("/api/v1/analyze/{screening_id}")
|
| 734 |
-
async def analyze_screening(screening_id: str, background_tasks: BackgroundTasks):
|
| 735 |
-
if screening_id not in screenings_db:
|
| 736 |
-
raise HTTPException(status_code=404, detail="Screening not found")
|
| 737 |
-
if screenings_db[screening_id].get("status") == "processing":
|
| 738 |
-
return {"message": "Already processing"}
|
| 739 |
-
screenings_db[screening_id]["status"] = "queued"
|
| 740 |
-
background_tasks.add_task(process_screening, screening_id)
|
| 741 |
-
return {"message": "Analysis enqueued"}
|
| 742 |
-
|
| 743 |
-
@app.get("/api/v1/status/{screening_id}")
|
| 744 |
-
async def get_status(screening_id: str):
|
| 745 |
-
if screening_id not in screenings_db:
|
| 746 |
-
raise HTTPException(status_code=404, detail="Screening not found")
|
| 747 |
-
status = screenings_db[screening_id].get("status", "unknown")
|
| 748 |
-
progress = 50 if status == "processing" else (100 if status == "completed" else 0)
|
| 749 |
-
return {"screening_id": screening_id, "status": status, "progress": progress}
|
| 750 |
-
|
| 751 |
-
@app.get("/api/v1/results/{screening_id}")
|
| 752 |
-
async def get_results(screening_id: str):
|
| 753 |
-
if screening_id not in screenings_db:
|
| 754 |
-
raise HTTPException(status_code=404, detail="Screening not found")
|
| 755 |
-
# Ensure vlm_raw is always present in ai_results for debugging
|
| 756 |
-
entry = screenings_db[screening_id]
|
| 757 |
-
entry.setdefault("ai_results", {})
|
| 758 |
-
entry["ai_results"].setdefault("vlm_raw", entry.get("ai_results", {}).get("vlm_raw", ""))
|
| 759 |
-
return entry
|
| 760 |
-
|
| 761 |
-
@app.get("/api/v1/history/{user_id}")
|
| 762 |
-
async def get_history(user_id: str):
|
| 763 |
-
history = [s for s in screenings_db.values() if s.get("user_id") == user_id]
|
| 764 |
-
return {"screenings": history}
|
| 765 |
-
|
| 766 |
-
# -----------------------
|
| 767 |
-
# Immediate VLM -> LLM routes (return vitals in one call)
|
| 768 |
-
# -----------------------
|
| 769 |
-
@app.post("/api/v1/get-vitals")
|
| 770 |
-
async def get_vitals_from_upload(
|
| 771 |
-
face_image: UploadFile = File(...),
|
| 772 |
-
eye_image: UploadFile = File(...)
|
| 773 |
-
):
|
| 774 |
-
"""
|
| 775 |
-
Run VLM -> LLM pipeline synchronously (but off the event loop) and return:
|
| 776 |
-
{ vlm_parsed_features, vlm_raw_output, llm_structured_risk }
|
| 777 |
-
Note: VLM will receive only the face image (not the eye image).
|
| 778 |
-
"""
|
| 779 |
-
if not GRADIO_AVAILABLE:
|
| 780 |
-
raise HTTPException(status_code=500, detail="VLM/LLM client not available in this deployment.")
|
| 781 |
-
|
| 782 |
-
# save files to a temp directory
|
| 783 |
-
try:
|
| 784 |
-
tmp_dir = "/tmp/elderly_healthwatch"
|
| 785 |
-
os.makedirs(tmp_dir, exist_ok=True)
|
| 786 |
-
uid = str(uuid.uuid4())
|
| 787 |
-
face_path = os.path.join(tmp_dir, f"{uid}_face.jpg")
|
| 788 |
-
eye_path = os.path.join(tmp_dir, f"{uid}_eye.jpg")
|
| 789 |
-
face_bytes = await face_image.read()
|
| 790 |
-
eye_bytes = await eye_image.read()
|
| 791 |
-
with open(face_path, "wb") as f:
|
| 792 |
-
f.write(face_bytes)
|
| 793 |
-
with open(eye_path, "wb") as f:
|
| 794 |
-
f.write(eye_bytes)
|
| 795 |
-
except Exception as e:
|
| 796 |
-
logger.exception("Failed saving uploaded images")
|
| 797 |
-
raise HTTPException(status_code=500, detail=f"Failed saving images: {e}")
|
| 798 |
-
|
| 799 |
-
try:
|
| 800 |
-
# Run VLM (off the event loop) - returns (features, raw, meta)
|
| 801 |
-
vlm_features, vlm_raw, vlm_meta = await asyncio.to_thread(run_vlm_and_get_features, face_path, eye_path)
|
| 802 |
-
|
| 803 |
-
# Log VLM outputs
|
| 804 |
-
logger.info("get_vitals_from_upload - VLM raw (snippet): %s", (vlm_raw[:500] + "...") if vlm_raw else "<EMPTY>")
|
| 805 |
-
logger.info("get_vitals_from_upload - VLM parsed features: %s", json.dumps(vlm_features, indent=2, ensure_ascii=False) if vlm_features else "None")
|
| 806 |
-
logger.info("get_vitals_from_upload - VLM meta: %s", json.dumps(vlm_meta, ensure_ascii=False))
|
| 807 |
-
|
| 808 |
-
# Decide what to feed to LLM: prefer cleaned JSON if available, else raw VLM string
|
| 809 |
-
if vlm_features:
|
| 810 |
-
llm_input = json.dumps(vlm_features, ensure_ascii=False)
|
| 811 |
-
logger.info("Feeding CLEANED VLM JSON to LLM (len=%d).", len(llm_input))
|
| 812 |
-
else:
|
| 813 |
-
llm_input = vlm_raw if vlm_raw and vlm_raw.strip() else "{}"
|
| 814 |
-
logger.info("Feeding RAW VLM STRING to LLM (len=%d).", len(llm_input))
|
| 815 |
-
|
| 816 |
-
# Run LLM (off the event loop)
|
| 817 |
-
structured_risk = await asyncio.to_thread(run_llm_on_vlm, llm_input)
|
| 818 |
-
|
| 819 |
-
# Return merged result (includes raw VLM output + meta for debugging)
|
| 820 |
-
return {
|
| 821 |
-
"vlm_raw_output": vlm_raw,
|
| 822 |
-
"vlm_parsed_features": vlm_features,
|
| 823 |
-
"vlm_meta": vlm_meta,
|
| 824 |
-
"llm_structured_risk": structured_risk
|
| 825 |
-
}
|
| 826 |
-
except Exception as e:
|
| 827 |
-
logger.exception("get_vitals_from_upload pipeline failed")
|
| 828 |
-
raise HTTPException(status_code=500, detail=f"Pipeline failed: {e}")
|
| 829 |
-
|
| 830 |
-
@app.post("/api/v1/get-vitals/{screening_id}")
|
| 831 |
-
async def get_vitals_for_screening(screening_id: str):
|
| 832 |
-
"""
|
| 833 |
-
Re-run VLM->LLM on images already stored for `screening_id` in screenings_db.
|
| 834 |
-
Useful for re-processing or debugging.
|
| 835 |
-
Note: VLM will receive only the face image (not the eye image).
|
| 836 |
-
"""
|
| 837 |
-
if screening_id not in screenings_db:
|
| 838 |
-
raise HTTPException(status_code=404, detail="Screening not found")
|
| 839 |
-
|
| 840 |
-
entry = screenings_db[screening_id]
|
| 841 |
-
face_path = entry.get("face_image_path")
|
| 842 |
-
eye_path = entry.get("eye_image_path")
|
| 843 |
-
if not (face_path and os.path.exists(face_path) and eye_path and os.path.exists(eye_path)):
|
| 844 |
-
raise HTTPException(status_code=400, detail="Stored images missing for this screening")
|
| 845 |
-
|
| 846 |
-
try:
|
| 847 |
-
# Run VLM off the event loop (returns features, raw, meta)
|
| 848 |
-
vlm_features, vlm_raw, vlm_meta = await asyncio.to_thread(run_vlm_and_get_features, face_path, eye_path)
|
| 849 |
-
|
| 850 |
-
logger.info("get_vitals_for_screening(%s) - VLM raw (snippet): %s", screening_id, (vlm_raw[:500] + "...") if vlm_raw else "<EMPTY>")
|
| 851 |
-
logger.info("get_vitals_for_screening(%s) - VLM parsed features: %s", screening_id, json.dumps(vlm_features, indent=2, ensure_ascii=False) if vlm_features else "None")
|
| 852 |
-
logger.info("get_vitals_for_screening(%s) - VLM meta: %s", screening_id, json.dumps(vlm_meta, ensure_ascii=False))
|
| 853 |
-
|
| 854 |
-
if vlm_features:
|
| 855 |
-
llm_input = json.dumps(vlm_features, ensure_ascii=False)
|
| 856 |
-
logger.info("Feeding CLEANED VLM JSON to LLM (len=%d).", len(llm_input))
|
| 857 |
-
else:
|
| 858 |
-
llm_input = vlm_raw if vlm_raw and vlm_raw.strip() else "{}"
|
| 859 |
-
logger.info("Feeding RAW VLM STRING to LLM (len=%d).", len(llm_input))
|
| 860 |
-
|
| 861 |
-
structured_risk = await asyncio.to_thread(run_llm_on_vlm, llm_input)
|
| 862 |
-
|
| 863 |
-
# Optionally store this run's outputs back into the DB for inspection
|
| 864 |
-
entry.setdefault("ai_results", {})
|
| 865 |
-
entry["ai_results"].update({
|
| 866 |
-
"vlm_parsed_features": vlm_features,
|
| 867 |
-
"vlm_raw": vlm_raw,
|
| 868 |
-
"vlm_meta": vlm_meta,
|
| 869 |
-
"structured_risk": structured_risk,
|
| 870 |
-
"last_vitals_run": datetime.utcnow().isoformat() + "Z"
|
| 871 |
-
})
|
| 872 |
-
|
| 873 |
-
return {
|
| 874 |
-
"screening_id": screening_id,
|
| 875 |
-
"vlm_raw_output": vlm_raw,
|
| 876 |
-
"vlm_parsed_features": vlm_features,
|
| 877 |
-
"vlm_meta": vlm_meta,
|
| 878 |
-
"llm_structured_risk": structured_risk
|
| 879 |
-
}
|
| 880 |
-
except Exception as e:
|
| 881 |
-
logger.exception("get_vitals_for_screening pipeline failed")
|
| 882 |
-
raise HTTPException(status_code=500, detail=f"Pipeline failed: {e}")
|
| 883 |
-
|
| 884 |
-
# -----------------------
|
| 885 |
-
# URL-based vitals endpoint (optional)
|
| 886 |
-
# -----------------------
|
| 887 |
-
class ImageUrls(BaseModel):
|
| 888 |
-
face_image_url: HttpUrl
|
| 889 |
-
eye_image_url: HttpUrl
|
| 890 |
-
|
| 891 |
-
import httpx # make sure to add httpx to requirements
|
| 892 |
-
|
| 893 |
-
# helper: download URL to file with safety checks
|
| 894 |
-
async def download_image_to_path(url: str, dest_path: str, max_bytes: int = 5_000_000, timeout_seconds: int = 10) -> None:
|
| 895 |
-
"""
|
| 896 |
-
Download an image from `url` and save to dest_path.
|
| 897 |
-
Guards:
|
| 898 |
-
- timeout
|
| 899 |
-
- max bytes
|
| 900 |
-
- basic content-type check (image/*)
|
| 901 |
-
Raises HTTPException on failure.
|
| 902 |
-
"""
|
| 903 |
-
try:
|
| 904 |
-
async with httpx.AsyncClient(timeout=timeout_seconds, follow_redirects=True) as client:
|
| 905 |
-
resp = await client.get(url, timeout=timeout_seconds)
|
| 906 |
-
resp.raise_for_status()
|
| 907 |
-
|
| 908 |
-
content_type = resp.headers.get("Content-Type", "")
|
| 909 |
-
if not content_type.startswith("image/"):
|
| 910 |
-
raise ValueError(f"URL does not appear to be an image (Content-Type={content_type})")
|
| 911 |
-
|
| 912 |
-
total = 0
|
| 913 |
-
with open(dest_path, "wb") as f:
|
| 914 |
-
async for chunk in resp.aiter_bytes():
|
| 915 |
-
if not chunk:
|
| 916 |
-
continue
|
| 917 |
-
total += len(chunk)
|
| 918 |
-
if total > max_bytes:
|
| 919 |
-
raise ValueError(f"Image exceeds max allowed size ({max_bytes} bytes)")
|
| 920 |
-
f.write(chunk)
|
| 921 |
-
except httpx.HTTPStatusError as e:
|
| 922 |
-
raise HTTPException(status_code=400, detail=f"Failed to fetch image: {e.response.status_code} {str(e)}")
|
| 923 |
-
except Exception as e:
|
| 924 |
-
raise HTTPException(status_code=400, detail=f"Failed to download image: {str(e)}")
|
| 925 |
-
|
| 926 |
-
@app.post("/api/v1/get-vitals-by-url")
|
| 927 |
-
async def get_vitals_from_urls(payload: ImageUrls = Body(...)):
|
| 928 |
-
"""
|
| 929 |
-
Download face and eye images from given URLs, then run the same VLM -> LLM pipeline and return results.
|
| 930 |
-
Note: VLM will receive only the face image (not the eye image).
|
| 931 |
-
Body: { "face_image_url": "...", "eye_image_url": "..." }
|
| 932 |
-
"""
|
| 933 |
-
if not GRADIO_AVAILABLE:
|
| 934 |
-
raise HTTPException(status_code=500, detail="VLM/LLM client not available in this deployment.")
|
| 935 |
-
|
| 936 |
-
# prepare tmp paths
|
| 937 |
-
try:
|
| 938 |
-
tmp_dir = "/tmp/elderly_healthwatch"
|
| 939 |
-
os.makedirs(tmp_dir, exist_ok=True)
|
| 940 |
-
uid = str(uuid.uuid4())
|
| 941 |
-
face_path = os.path.join(tmp_dir, f"{uid}_face.jpg")
|
| 942 |
-
eye_path = os.path.join(tmp_dir, f"{uid}_eye.jpg")
|
| 943 |
-
except Exception as e:
|
| 944 |
-
logger.exception("Failed to prepare temp paths")
|
| 945 |
-
raise HTTPException(status_code=500, detail=f"Server error preparing temp files: {e}")
|
| 946 |
-
|
| 947 |
-
# download images (with guards)
|
| 948 |
-
try:
|
| 949 |
-
await download_image_to_path(str(payload.face_image_url), face_path)
|
| 950 |
-
await download_image_to_path(str(payload.eye_image_url), eye_path)
|
| 951 |
-
except HTTPException:
|
| 952 |
-
raise
|
| 953 |
-
except Exception as e:
|
| 954 |
-
logger.exception("Downloading images failed")
|
| 955 |
-
raise HTTPException(status_code=400, detail=f"Failed to download images: {e}")
|
| 956 |
-
|
| 957 |
-
# run existing pipeline (off the event loop)
|
| 958 |
-
try:
|
| 959 |
-
vlm_features, vlm_raw, vlm_meta = await asyncio.to_thread(run_vlm_and_get_features, face_path, eye_path)
|
| 960 |
-
|
| 961 |
-
logger.info("get_vitals_from_urls - VLM raw (snippet): %s", (vlm_raw[:500] + "...") if vlm_raw else "<EMPTY>")
|
| 962 |
-
logger.info("get_vitals_from_urls - VLM parsed features: %s", json.dumps(vlm_features, indent=2, ensure_ascii=False) if vlm_features else "None")
|
| 963 |
-
logger.info("get_vitals_from_urls - VLM meta: %s", json.dumps(vlm_meta, ensure_ascii=False))
|
| 964 |
-
|
| 965 |
-
if vlm_features:
|
| 966 |
-
llm_input = json.dumps(vlm_features, ensure_ascii=False)
|
| 967 |
-
logger.info("Feeding CLEANED VLM JSON to LLM (len=%d).", len(llm_input))
|
| 968 |
-
else:
|
| 969 |
-
llm_input = vlm_raw if vlm_raw and vlm_raw.strip() else "{}"
|
| 970 |
-
logger.info("Feeding RAW VLM STRING to LLM (len=%d).", len(llm_input))
|
| 971 |
-
|
| 972 |
-
structured_risk = await asyncio.to_thread(run_llm_on_vlm, llm_input)
|
| 973 |
-
|
| 974 |
-
return {
|
| 975 |
-
"vlm_raw_output": vlm_raw,
|
| 976 |
-
"vlm_parsed_features": vlm_features,
|
| 977 |
-
"vlm_meta": vlm_meta,
|
| 978 |
-
"llm_structured_risk": structured_risk
|
| 979 |
-
}
|
| 980 |
-
except Exception as e:
|
| 981 |
-
logger.exception("get_vitals_by_url pipeline failed")
|
| 982 |
-
raise HTTPException(status_code=500, detail=f"Pipeline failed: {e}")
|
| 983 |
-
|
| 984 |
-
# -----------------------
|
| 985 |
-
# Main background pipeline (upload -> process_screening)
|
| 986 |
-
# -----------------------
|
| 987 |
-
async def process_screening(screening_id: str):
|
| 988 |
-
"""
|
| 989 |
-
Main pipeline:
|
| 990 |
-
- load images
|
| 991 |
-
- quick detector-based quality metrics
|
| 992 |
-
- run VLM -> vlm_features (dict or None) + vlm_raw (string) + vlm_meta
|
| 993 |
-
- run LLM on vlm_features (preferred) or vlm_raw -> structured risk JSON
|
| 994 |
-
- merge results into ai_results and finish
|
| 995 |
-
"""
|
| 996 |
-
try:
|
| 997 |
-
if screening_id not in screenings_db:
|
| 998 |
-
logger.error("[process_screening] screening %s not found", screening_id)
|
| 999 |
-
return
|
| 1000 |
-
screenings_db[screening_id]["status"] = "processing"
|
| 1001 |
-
logger.info("[process_screening] Starting %s", screening_id)
|
| 1002 |
-
|
| 1003 |
-
entry = screenings_db[screening_id]
|
| 1004 |
-
face_path = entry.get("face_image_path")
|
| 1005 |
-
eye_path = entry.get("eye_image_path")
|
| 1006 |
-
|
| 1007 |
-
if not (face_path and os.path.exists(face_path)):
|
| 1008 |
-
raise RuntimeError("Face image missing")
|
| 1009 |
-
if not (eye_path and os.path.exists(eye_path)):
|
| 1010 |
-
raise RuntimeError("Eye image missing")
|
| 1011 |
-
|
| 1012 |
-
face_img = Image.open(face_path).convert("RGB")
|
| 1013 |
-
eye_img = Image.open(eye_path).convert("RGB")
|
| 1014 |
-
|
| 1015 |
-
# Basic detection + quality metrics (facenet/mtcnn/opencv)
|
| 1016 |
-
face_detected = False
|
| 1017 |
-
face_confidence = 0.0
|
| 1018 |
-
left_eye_coord = right_eye_coord = None
|
| 1019 |
-
|
| 1020 |
-
if mtcnn is not None and not isinstance(mtcnn, dict) and (_MTCNN_IMPL == "facenet_pytorch" or _MTCNN_IMPL == "mtcnn"):
|
| 1021 |
-
try:
|
| 1022 |
-
if _MTCNN_IMPL == "facenet_pytorch":
|
| 1023 |
-
boxes, probs, landmarks = mtcnn.detect(face_img, landmarks=True)
|
| 1024 |
-
if boxes is not None and len(boxes) > 0:
|
| 1025 |
-
face_detected = True
|
| 1026 |
-
face_confidence = float(probs[0]) if probs is not None else 0.0
|
| 1027 |
-
if landmarks is not None:
|
| 1028 |
-
lm = landmarks[0]
|
| 1029 |
-
if len(lm) >= 2:
|
| 1030 |
-
left_eye_coord = {"x": float(lm[0][0]), "y": float(lm[0][1])}
|
| 1031 |
-
right_eye_coord = {"x": float(lm[1][0]), "y": float(lm[1][1])}
|
| 1032 |
-
else:
|
| 1033 |
-
arr = np.asarray(face_img)
|
| 1034 |
-
detections = mtcnn.detect_faces(arr)
|
| 1035 |
-
if detections:
|
| 1036 |
-
face_detected = True
|
| 1037 |
-
face_confidence = float(detections[0].get("confidence", 0.0))
|
| 1038 |
-
k = detections[0].get("keypoints", {})
|
| 1039 |
-
left_eye_coord = k.get("left_eye")
|
| 1040 |
-
right_eye_coord = k.get("right_eye")
|
| 1041 |
-
except Exception:
|
| 1042 |
-
traceback.print_exc()
|
| 1043 |
-
|
| 1044 |
-
if isinstance(mtcnn, dict) and mtcnn.get("impl") == "opencv":
|
| 1045 |
-
try:
|
| 1046 |
-
arr = np.asarray(face_img)
|
| 1047 |
-
gray = cv2.cvtColor(arr, cv2.COLOR_RGB2GRAY)
|
| 1048 |
-
face_cascade = mtcnn["face_cascade"]
|
| 1049 |
-
eye_cascade = mtcnn["eye_cascade"]
|
| 1050 |
-
faces = face_cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=4, minSize=(60, 60))
|
| 1051 |
-
if len(faces) > 0:
|
| 1052 |
-
face_detected = True
|
| 1053 |
-
(x, y, w, h) = faces[0]
|
| 1054 |
-
face_confidence = min(1.0, (w*h) / (arr.shape[0]*arr.shape[1]) * 4.0)
|
| 1055 |
-
roi_gray = gray[y:y+h, x:x+w]
|
| 1056 |
-
eyes = eye_cascade.detectMultiScale(roi_gray, scaleFactor=1.1, minNeighbors=5, minSize=(20, 10))
|
| 1057 |
-
if len(eyes) >= 1:
|
| 1058 |
-
ex, ey, ew, eh = eyes[0]
|
| 1059 |
-
left_eye_coord = {"x": float(x + ex + ew/2), "y": float(y + ey + eh/2)}
|
| 1060 |
-
except Exception:
|
| 1061 |
-
traceback.print_exc()
|
| 1062 |
-
|
| 1063 |
-
face_quality_score = 0.85 if face_detected and face_confidence > 0.6 else 0.45
|
| 1064 |
-
quality_metrics = {
|
| 1065 |
-
"face_detected": face_detected,
|
| 1066 |
-
"face_confidence": round(face_confidence, 3),
|
| 1067 |
-
"face_quality_score": round(face_quality_score, 2),
|
| 1068 |
-
"eye_coords": {"left_eye": left_eye_coord, "right_eye": right_eye_coord},
|
| 1069 |
-
"face_brightness": int(np.mean(np.asarray(face_img.convert("L")))),
|
| 1070 |
-
"face_blur_estimate": int(np.var(np.asarray(face_img.convert("L"))))
|
| 1071 |
-
}
|
| 1072 |
-
screenings_db[screening_id]["quality_metrics"] = quality_metrics
|
| 1073 |
-
|
| 1074 |
-
# --------------------------
|
| 1075 |
-
# RUN VLM -> get vlm_features + vlm_raw + vlm_meta
|
| 1076 |
-
# --------------------------
|
| 1077 |
-
vlm_features = None
|
| 1078 |
-
vlm_raw = None
|
| 1079 |
-
vlm_meta = {}
|
| 1080 |
-
try:
|
| 1081 |
-
vlm_features, vlm_raw, vlm_meta = run_vlm_and_get_features(face_path, eye_path)
|
| 1082 |
-
screenings_db[screening_id].setdefault("ai_results", {})
|
| 1083 |
-
screenings_db[screening_id]["ai_results"].update({
|
| 1084 |
-
"vlm_parsed_features": vlm_features,
|
| 1085 |
-
"vlm_raw": vlm_raw,
|
| 1086 |
-
"vlm_meta": vlm_meta
|
| 1087 |
-
})
|
| 1088 |
-
except Exception as e:
|
| 1089 |
-
logger.exception("VLM feature extraction failed")
|
| 1090 |
-
screenings_db[screening_id].setdefault("ai_results", {})
|
| 1091 |
-
screenings_db[screening_id]["ai_results"].update({"vlm_error": str(e)})
|
| 1092 |
-
vlm_features = None
|
| 1093 |
-
vlm_raw = ""
|
| 1094 |
-
vlm_meta = {"error": str(e)}
|
| 1095 |
-
|
| 1096 |
-
# Log VLM outputs in pipeline context
|
| 1097 |
-
logger.info("process_screening(%s) - VLM raw (snippet): %s", screening_id, (vlm_raw[:500] + "...") if vlm_raw else "<EMPTY>")
|
| 1098 |
-
logger.info("process_screening(%s) - VLM parsed features: %s", screening_id, json.dumps(vlm_features, indent=2, ensure_ascii=False) if vlm_features else "None")
|
| 1099 |
-
logger.info("process_screening(%s) - VLM meta: %s", screening_id, json.dumps(vlm_meta, ensure_ascii=False))
|
| 1100 |
-
|
| 1101 |
-
# --------------------------
|
| 1102 |
-
# RUN LLM on vlm_parsed (preferred) or vlm_raw -> structured risk JSON
|
| 1103 |
-
# --------------------------
|
| 1104 |
-
structured_risk = None
|
| 1105 |
-
try:
|
| 1106 |
-
if vlm_features:
|
| 1107 |
-
# prefer cleaned JSON
|
| 1108 |
-
llm_input = json.dumps(vlm_features, ensure_ascii=False)
|
| 1109 |
-
else:
|
| 1110 |
-
# fallback to raw string (may be empty)
|
| 1111 |
-
llm_input = vlm_raw if vlm_raw and vlm_raw.strip() else "{}"
|
| 1112 |
-
|
| 1113 |
-
structured_risk = run_llm_on_vlm(llm_input)
|
| 1114 |
-
screenings_db[screening_id].setdefault("ai_results", {})
|
| 1115 |
-
screenings_db[screening_id]["ai_results"].update({"structured_risk": structured_risk})
|
| 1116 |
-
except Exception as e:
|
| 1117 |
-
logger.exception("LLM processing failed")
|
| 1118 |
-
screenings_db[screening_id].setdefault("ai_results", {})
|
| 1119 |
-
screenings_db[screening_id]["ai_results"].update({"llm_error": str(e)})
|
| 1120 |
-
structured_risk = {
|
| 1121 |
-
"risk_score": 0.0,
|
| 1122 |
-
"jaundice_probability": 0.0,
|
| 1123 |
-
"anemia_probability": 0.0,
|
| 1124 |
-
"hydration_issue_probability": 0.0,
|
| 1125 |
-
"neurological_issue_probability": 0.0,
|
| 1126 |
-
"summary": "",
|
| 1127 |
-
"recommendation": "",
|
| 1128 |
-
"confidence": 0.0
|
| 1129 |
-
}
|
| 1130 |
-
|
| 1131 |
-
# Use structured_risk for summary recommendations & simple disease inference placeholders
|
| 1132 |
-
screenings_db[screening_id].setdefault("ai_results", {})
|
| 1133 |
-
screenings_db[screening_id]["ai_results"].update({
|
| 1134 |
-
"processing_time_ms": 1200
|
| 1135 |
-
})
|
| 1136 |
-
|
| 1137 |
-
disease_predictions = [
|
| 1138 |
-
{
|
| 1139 |
-
"condition": "Anemia-like-signs",
|
| 1140 |
-
"risk_level": "Medium" if structured_risk.get("anemia_probability", 0.0) > 0.5 else "Low",
|
| 1141 |
-
"probability": structured_risk.get("anemia_probability", 0.0),
|
| 1142 |
-
"confidence": structured_risk.get("confidence", 0.0)
|
| 1143 |
-
},
|
| 1144 |
-
{
|
| 1145 |
-
"condition": "Jaundice-like-signs",
|
| 1146 |
-
"risk_level": "Medium" if structured_risk.get("jaundice_probability", 0.0) > 0.5 else "Low",
|
| 1147 |
-
"probability": structured_risk.get("jaundice_probability", 0.0),
|
| 1148 |
-
"confidence": structured_risk.get("confidence", 0.0)
|
| 1149 |
-
}
|
| 1150 |
-
]
|
| 1151 |
-
|
| 1152 |
-
recommendations = {
|
| 1153 |
-
"action_needed": "consult" if structured_risk.get("risk_score", 0.0) > 30.0 else "monitor",
|
| 1154 |
-
"message_english": structured_risk.get("recommendation", "") or f"Please follow up with a health professional if concerns persist.",
|
| 1155 |
-
"message_hindi": ""
|
| 1156 |
-
}
|
| 1157 |
-
|
| 1158 |
-
screenings_db[screening_id].update({
|
| 1159 |
-
"status": "completed",
|
| 1160 |
-
"disease_predictions": disease_predictions,
|
| 1161 |
-
"recommendations": recommendations
|
| 1162 |
-
})
|
| 1163 |
-
|
| 1164 |
-
logger.info("[process_screening] Completed %s", screening_id)
|
| 1165 |
-
except Exception as e:
|
| 1166 |
-
traceback.print_exc()
|
| 1167 |
-
if screening_id in screenings_db:
|
| 1168 |
-
screenings_db[screening_id]["status"] = "failed"
|
| 1169 |
-
screenings_db[screening_id]["error"] = str(e)
|
| 1170 |
-
else:
|
| 1171 |
-
logger.error("[process_screening] Failed for unknown screening %s: %s", screening_id, str(e))
|
| 1172 |
-
|
| 1173 |
# -----------------------
|
| 1174 |
# Run server (for local debugging)
|
| 1175 |
# -----------------------
|
| 1176 |
if __name__ == "__main__":
|
| 1177 |
import uvicorn
|
| 1178 |
-
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=False)
|
|
|
|
| 16 |
* extracts JSON from VLM via regex when possible, and
|
| 17 |
* sends only the face image to the VLM (not the eye image).
|
| 18 |
"""
|
|
|
|
| 19 |
import io
|
| 20 |
import os
|
| 21 |
import uuid
|
|
|
|
| 35 |
import numpy as np
|
| 36 |
import cv2 # opencv-python-headless expected installed
|
| 37 |
|
| 38 |
+
# httpx used for multipart fallback when gradio_client cannot reliably upload
|
| 39 |
+
import httpx # ensure httpx added to requirements
|
| 40 |
+
|
| 41 |
# Optional gradio client (for VLM + LLM calls)
|
| 42 |
try:
|
| 43 |
from gradio_client import Client, handle_file # type: ignore
|
|
|
|
| 247 |
}
|
| 248 |
return out
|
| 249 |
|
| 250 |
+
# -----------------------
|
| 251 |
+
# Helper: multipart call to HF Space inference endpoint (fallback)
|
| 252 |
+
# -----------------------
|
| 253 |
+
def call_space_multipart(space: str, api_name: str, prompt: str, face_path: str, timeout: float = 30.0) -> Dict[str, Any]:
|
| 254 |
+
"""
|
| 255 |
+
Multipart POST to Hugging Face Space inference endpoint.
|
| 256 |
+
- Attempts to send an explicit multipart upload that many Spaces accept.
|
| 257 |
+
- Returns parsed JSON when available or a dict with 'raw' text.
|
| 258 |
+
"""
|
| 259 |
+
# Build embed-style endpoint
|
| 260 |
+
endpoint = f"https://hf.space/embed/{space}/api/{api_name.lstrip('/')}"
|
| 261 |
+
headers = {}
|
| 262 |
+
if HF_TOKEN:
|
| 263 |
+
headers["Authorization"] = f"Bearer {HF_TOKEN}"
|
| 264 |
+
|
| 265 |
+
# Many Spaces accept a "data" field which is a JSON array of inputs; we provide prompt as first arg
|
| 266 |
+
# and attach the file with a 'file' key. Some Spaces expect different key names — this is a pragmatic fallback.
|
| 267 |
+
files = {
|
| 268 |
+
"data": (None, json.dumps([prompt, None])), # second element reserved for the file param; some spaces ignore it
|
| 269 |
+
"file": (os.path.basename(face_path), open(face_path, "rb"), "image/jpeg")
|
| 270 |
+
}
|
| 271 |
+
try:
|
| 272 |
+
with httpx.Client(timeout=timeout) as client:
|
| 273 |
+
resp = client.post(endpoint, headers=headers, files=files)
|
| 274 |
+
resp.raise_for_status()
|
| 275 |
+
try:
|
| 276 |
+
return resp.json()
|
| 277 |
+
except Exception:
|
| 278 |
+
# return raw text if JSON is unavailable
|
| 279 |
+
return {"raw": resp.text}
|
| 280 |
+
except Exception as e:
|
| 281 |
+
logger.exception("call_space_multipart failed: %s", e)
|
| 282 |
+
raise
|
| 283 |
+
|
| 284 |
# -----------------------
|
| 285 |
# Gradio / VLM helper (sends only face image, returns meta)
|
| 286 |
+
# Robust: tries predictable gradio_client signatures; if that fails, falls back to multipart HTTP
|
| 287 |
# -----------------------
|
| 288 |
def get_gradio_client_for_space(space: str) -> Client:
|
| 289 |
if not GRADIO_AVAILABLE:
|
|
|
|
| 303 |
- vlm_files_seen (int or None)
|
| 304 |
- vlm_raw_len (int)
|
| 305 |
- vlm_out_object (short repr)
|
| 306 |
+
- vlm_upload_method (which method was used)
|
| 307 |
"""
|
| 308 |
prompt = prompt or DEFAULT_VLM_PROMPT
|
| 309 |
|
|
|
|
| 310 |
if not os.path.exists(face_path):
|
| 311 |
raise FileNotFoundError(f"Face image not found at: {face_path}")
|
| 312 |
+
if eye_path is not None and not os.path.exists(eye_path):
|
| 313 |
raise FileNotFoundError(f"Eye image not found at: {eye_path}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 314 |
|
| 315 |
+
face_size = os.path.getsize(face_path)
|
| 316 |
+
logger.info(f"VLM input files - Face: {face_size} bytes")
|
| 317 |
+
if face_size == 0:
|
| 318 |
+
raise ValueError("Face image is empty (0 bytes)")
|
| 319 |
+
|
| 320 |
+
meta: Dict[str, Any] = {
|
| 321 |
+
"vlm_file_delivery_ok": False,
|
| 322 |
+
"vlm_files_seen": None,
|
| 323 |
+
"vlm_raw_len": 0,
|
| 324 |
+
"vlm_out_object": None,
|
| 325 |
+
"vlm_upload_method": None
|
| 326 |
+
}
|
|
|
|
|
|
|
|
|
|
| 327 |
|
| 328 |
+
# If gradio_client is not available, directly use multipart fallback
|
| 329 |
+
if not GRADIO_AVAILABLE:
|
| 330 |
+
logger.warning("gradio_client not available; using httpx multipart fallback to upload image.")
|
| 331 |
+
try:
|
| 332 |
+
out = call_space_multipart(GRADIO_VLM_SPACE, "chat_fn", prompt, face_path)
|
| 333 |
+
raw_text = ""
|
| 334 |
+
if isinstance(out, dict):
|
| 335 |
+
# Some spaces return {'data': [...]} or similar
|
| 336 |
+
raw_text = json.dumps(out)
|
| 337 |
+
else:
|
| 338 |
+
raw_text = str(out)
|
| 339 |
+
meta["vlm_upload_method"] = "httpx_multipart"
|
| 340 |
+
meta["vlm_raw_len"] = len(raw_text)
|
| 341 |
+
meta["vlm_out_object"] = (raw_text[:2000] + "...") if len(raw_text) > 2000 else raw_text
|
| 342 |
+
except Exception as e:
|
| 343 |
+
logger.exception("Multipart fallback failed")
|
| 344 |
+
raise RuntimeError(f"VLM multipart fallback failed: {e}")
|
| 345 |
|
| 346 |
+
else:
|
| 347 |
+
# Try using gradio_client with predictable argument patterns
|
| 348 |
+
client = get_gradio_client_for_space(GRADIO_VLM_SPACE)
|
| 349 |
|
| 350 |
+
# Prepare handle_file wrapper (gradio_client helper)
|
| 351 |
+
try:
|
| 352 |
+
file_wrapper = handle_file(face_path)
|
| 353 |
+
except Exception:
|
| 354 |
+
# Some versions expect an open file-like; attempt that
|
| 355 |
+
file_wrapper = open(face_path, "rb")
|
|
|
|
| 356 |
|
| 357 |
+
# We'll try several invocation styles until one works:
|
| 358 |
+
tried_methods = []
|
| 359 |
+
result = None
|
| 360 |
+
# 1) Positional: client.predict(prompt, file, api_name="/chat_fn")
|
| 361 |
+
try:
|
| 362 |
+
logger.info("Attempting gradio_client.predict positional call (prompt, file) to %s", GRADIO_VLM_SPACE)
|
| 363 |
+
result = client.predict(prompt, file_wrapper, api_name="/chat_fn")
|
| 364 |
+
meta["vlm_upload_method"] = "gradio_positional"
|
| 365 |
+
tried_methods.append("gradio_positional")
|
| 366 |
+
except TypeError as te:
|
| 367 |
+
logger.info("Positional call TypeError: %s", te)
|
| 368 |
+
tried_methods.append("gradio_positional_failed")
|
| 369 |
+
except Exception as e:
|
| 370 |
+
logger.exception("Positional gradio_client.predict failed: %s", e)
|
| 371 |
+
tried_methods.append("gradio_positional_failed_general")
|
| 372 |
+
|
| 373 |
+
# 2) Named common alternatives
|
| 374 |
+
if result is None:
|
| 375 |
+
named_attempts = [
|
| 376 |
+
{"text": prompt, "image": file_wrapper},
|
| 377 |
+
{"message": prompt, "file": file_wrapper},
|
| 378 |
+
{"prompt": prompt, "image": file_wrapper},
|
| 379 |
+
{"prompt": prompt, "file": file_wrapper},
|
| 380 |
+
{"input_data": [prompt, None]} # sometimes chat endpoints want a data array; we can't attach file here but we try
|
| 381 |
+
]
|
| 382 |
+
for named_args in named_attempts:
|
| 383 |
+
try:
|
| 384 |
+
logger.info("Attempting gradio_client.predict named call with args: %s", list(named_args.keys()))
|
| 385 |
+
# always pass api_name explicitly
|
| 386 |
+
result = client.predict(api_name="/chat_fn", **named_args)
|
| 387 |
+
meta["vlm_upload_method"] = "gradio_named:" + ",".join(list(named_args.keys()))
|
| 388 |
+
tried_methods.append(f"gradio_named_{','.join(list(named_args.keys()))}")
|
| 389 |
+
break
|
| 390 |
+
except TypeError as te:
|
| 391 |
+
logger.info("Named call TypeError with keys %s: %s", list(named_args.keys()), te)
|
| 392 |
+
except Exception as e:
|
| 393 |
+
logger.info("Named call failed with keys %s: %s", list(named_args.keys()), e)
|
| 394 |
+
|
| 395 |
+
# 3) If still None, fallback to httpx multipart
|
| 396 |
+
if result is None:
|
| 397 |
+
logger.warning("gradio_client attempts did not yield a usable response; falling back to httpx multipart upload.")
|
| 398 |
+
tried_methods.append("httpx_multipart_fallback")
|
| 399 |
+
try:
|
| 400 |
+
out = call_space_multipart(GRADIO_VLM_SPACE, "chat_fn", prompt, face_path)
|
| 401 |
+
result = out
|
| 402 |
+
meta["vlm_upload_method"] = "httpx_multipart"
|
| 403 |
+
except Exception as e:
|
| 404 |
+
logger.exception("httpx multipart fallback failed: %s", e)
|
| 405 |
+
raise RuntimeError(f"All VLM upload methods failed: {e}. Tried: {tried_methods}")
|
| 406 |
+
|
| 407 |
+
# Normalize result into raw_text and out object
|
| 408 |
raw_text = ""
|
| 409 |
out = None
|
| 410 |
+
try:
|
| 411 |
+
# If result is an httpx/json dict from call_space_multipart or gradio returned a dict/list
|
| 412 |
+
if isinstance(result, (dict, list)):
|
|
|
|
|
|
|
|
|
|
| 413 |
out = result
|
| 414 |
+
# Try to extract textual outputs in common keys
|
| 415 |
+
if isinstance(out, dict):
|
| 416 |
+
possible_text = out.get("data") or out.get("text") or out.get("output") or out.get("raw") or out.get("msg")
|
| 417 |
+
if possible_text is None:
|
| 418 |
+
# Some Spaces return {'data': ['...']} or {'data': [{...}]}
|
| 419 |
+
if "data" in out and isinstance(out["data"], (list, tuple)) and len(out["data"]) > 0:
|
| 420 |
+
possible_text = out["data"][0]
|
| 421 |
+
if isinstance(possible_text, (dict, list)):
|
| 422 |
+
raw_text = json.dumps(possible_text)
|
| 423 |
+
else:
|
| 424 |
+
raw_text = str(possible_text or "")
|
| 425 |
+
else:
|
| 426 |
+
raw_text = json.dumps(out)
|
| 427 |
else:
|
| 428 |
+
# not dict/list -> string-like
|
| 429 |
+
raw_text = str(result or "")
|
| 430 |
+
out = {"text": raw_text}
|
| 431 |
+
except Exception as e:
|
| 432 |
+
logger.exception("Normalization of VLM result failed: %s", e)
|
| 433 |
+
raw_text = str(result or "")
|
| 434 |
+
out = {"text": raw_text}
|
| 435 |
|
| 436 |
+
meta["vlm_raw_len"] = len(raw_text or "")
|
| 437 |
+
try:
|
| 438 |
+
meta["vlm_out_object"] = str(out)[:2000]
|
| 439 |
+
except Exception:
|
| 440 |
+
meta["vlm_out_object"] = "<unreprable>"
|
|
|
|
|
|
|
| 441 |
|
| 442 |
+
logger.info("VLM response object (debug snippet): %s", meta["vlm_out_object"])
|
| 443 |
|
| 444 |
# --- Check whether the remote acknowledged receiving files (expect 1) ---
|
| 445 |
files_seen = None
|
|
|
|
| 697 |
"detector": impl,
|
| 698 |
"vlm_available": GRADIO_AVAILABLE,
|
| 699 |
"vlm_space": GRADIO_VLM_SPACE,
|
| 700 |
+
"llm_space": LLM_GRADIO_SPACE,
|
| 701 |
+
"hf_token_present": bool(HF_TOKEN)
|
| 702 |
}
|
| 703 |
|
| 704 |
@app.post("/api/v1/validate-eye-photo")
|
|
|
|
| 754 |
is_valid = eye_openness_score >= 0.3
|
| 755 |
return {"valid": bool(is_valid), "face_detected": True, "eye_openness_score": round(eye_openness_score, 2),
|
| 756 |
"message_english": "Photo looks good! Eyes are properly open." if is_valid else "Eyes appear to be closed or partially closed. Please open your eyes wide and try again.",
|
| 757 |
+
"message_hindi": "फोटो अच्छी है! आंखें ठीक से खुली हैं।" if is_valid else "आंखें बंद या आंशिक रूप से बंद दिखाई दे रही हैं। कृपया अपनी आंखें चौड़ी खोलें और पुनः प्रयास करें।",
|
| 758 |
"eye_landmarks": {"left_eye": left_eye, "right_eye": right_eye}}
|
| 759 |
|
| 760 |
if isinstance(mtcnn, dict) and mtcnn.get("impl") == "opencv":
|
|
|
|
| 781 |
left_eye = {"x": cx, "y": cy}
|
| 782 |
return {"valid": bool(is_valid), "face_detected": True, "eye_openness_score": round(eye_openness_score, 2),
|
| 783 |
"message_english": "Photo looks good! Eyes are detected." if is_valid else "Eyes not detected. Please open your eyes wide and try again.",
|
| 784 |
+
"message_hindi": "फोटो अच्छी है! आंखें मिलीं।" if is_valid else "आंखें नहीं मिलीं। कृपया अपनी आंखें चौड़ी खोलें और पुनः प्रयास करें।",
|
| 785 |
"eye_landmarks": {"left_eye": left_eye, "right_eye": right_eye}}
|
| 786 |
except Exception:
|
| 787 |
traceback.print_exc()
|
|
|
|
| 797 |
"message_hindi": "छवि प्रोसेस करने में त्रुटि। कृपया पुनः प्रयास करें।",
|
| 798 |
"error": str(e)}
|
| 799 |
|
| 800 |
+
# ... (the rest of your endpoints remain unchanged, same as original) ...
|
| 801 |
+
# For brevity, the remainder of endpoints (upload_images, analyze_screening, get_status, get_results,
|
| 802 |
+
# get_history, get_vitals_from_upload, get_vitals_for_screening, get_vitals_from_urls, process_screening)
|
| 803 |
+
# are unchanged from your original file. They will call the updated run_vlm_and_get_features above.
|
| 804 |
+
#
|
| 805 |
+
# (Paste the remaining original code for endpoints/process_screening as-is here or keep the version you had,
|
| 806 |
+
# because the only functional changes required were to the VLM upload logic.)
|
| 807 |
+
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 808 |
# -----------------------
|
| 809 |
# Run server (for local debugging)
|
| 810 |
# -----------------------
|
| 811 |
if __name__ == "__main__":
|
| 812 |
import uvicorn
|
| 813 |
+
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=False)
|