Spaces:
Sleeping
Sleeping
File size: 54,272 Bytes
ee55454 24c5eb2 | 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 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 | import os
import re
import sqlite3
import requests
from datetime import datetime
from flask import Flask, request, jsonify, render_template, g
from flask_cors import CORS
from threading import Lock
# OpenMed NER β symptom entity extraction
try:
from transformers import pipeline
openmed_ner = pipeline(
"token-classification",
model="OpenMed/OpenMed-NER-DiseaseDetect-BioMed-335M",
aggregation_strategy="simple"
)
OPENMED_AVAILABLE = True
print("β
OpenMed NER loaded")
except Exception as e:
openmed_ner = None
OPENMED_AVAILABLE = False
print(f"β οΈ OpenMed NER not available: {e}")
# Load .env file
try:
from dotenv import load_dotenv
load_dotenv(dotenv_path=".env") # β yeh ek word change karo
except ImportError:
pass
from pypdf import PdfReader
from langchain_community.vectorstores import FAISS
from langchain_community.embeddings import HuggingFaceEmbeddings
from langchain_text_splitters import RecursiveCharacterTextSplitter
from langchain_core.documents import Document
from gtts import gTTS
import io
import uuid
app = Flask(__name__)
CORS(app)
rag_lock = Lock()
VECTORSTORE = None
DATABASE = "safecure.db"
# ==============================
# DATABASE SETUP
# ==============================
def get_db():
db = getattr(g, '_database', None)
if db is None:
db = g._database = sqlite3.connect(DATABASE)
db.row_factory = sqlite3.Row
return db
@app.teardown_appcontext
def close_connection(exception):
db = getattr(g, '_database', None)
if db is not None:
db.close()
def init_db():
with app.app_context():
db = sqlite3.connect(DATABASE)
db.execute('''
CREATE TABLE IF NOT EXISTS patients (
id TEXT PRIMARY KEY,
timestamp TEXT NOT NULL,
condition TEXT,
allergies TEXT,
medications TEXT,
age TEXT,
assessment TEXT,
antibiotic_necessity TEXT,
first_line TEXT,
second_line TEXT,
contraindications TEXT,
recommended_tests TEXT,
additional_info_needed TEXT,
raw_response TEXT
)
''')
db.commit()
db.close()
def save_to_db(patient_id, data, parsed):
db = get_db()
# Migrate old schema if needed
try:
db.execute("SELECT recommended_tests FROM patients LIMIT 1")
except Exception:
for col in ["age TEXT", "recommended_tests TEXT", "additional_info_needed TEXT"]:
try:
db.execute(f"ALTER TABLE patients ADD COLUMN {col}")
except Exception:
pass
db.commit()
db.execute('''
INSERT INTO patients
(id, timestamp, condition, allergies, medications, age, assessment,
antibiotic_necessity, first_line, second_line, contraindications,
recommended_tests, additional_info_needed, raw_response)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
''', (
patient_id,
datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
data.get('condition', ''),
data.get('allergies', ''),
data.get('medications', ''),
data.get('age', ''),
parsed.get('assessment', ''),
parsed.get('antibiotic_necessity', ''),
parsed.get('first_line', ''),
parsed.get('second_line', ''),
parsed.get('contraindications', ''),
parsed.get('recommended_tests', ''),
parsed.get('additional_info_needed', ''),
parsed.get('raw', '')
))
db.commit()
# ==============================
# PARSE RESPONSE
# ==============================
def parse_response(response_text):
response_text = re.sub(r'\*+', '', response_text)
response_text = re.sub(r'#+\s*', '', response_text)
sections = {
'assessment': '',
'antibiotic_necessity': '',
'first_line': '',
'second_line': '',
'contraindications': '',
'recommended_tests': '',
'additional_info_needed': '',
'raw': response_text
}
# Multiple header variations mapped to same section key
section_map = [
(["clinical assessment:", "assessment:"], 'assessment'),
(["antibiotic necessity:", "antibiotic:"], 'antibiotic_necessity'),
(["first-line therapy:", "first-line:", "first line therapy:", "first line:"], 'first_line'),
(["second-line alternatives:", "second-line:", "second line alternatives:", "second line:"], 'second_line'),
(["contraindications & precautions:", "contraindications:", "precautions:"], 'contraindications'),
(["recommended tests:", "tests:", "investigations:"], 'recommended_tests'),
(["additional information needed:", "additional information:", "additional info:"], 'additional_info_needed'),
]
lines = response_text.split('\n')
current = None
buffer = []
def flush(key):
if key and buffer:
sections[key] = ' | '.join(buffer).strip()
buffer.clear()
for line in lines:
line = line.strip()
if not line:
continue
matched = False
line_lower = line.lower()
for headers, key in section_map:
for header in headers:
if line_lower.startswith(header):
flush(current)
current = key
val = line[len(header):].strip()
if val:
buffer.append(val)
matched = True
break
if matched:
break
if not matched and current:
item = line.lstrip('-β’0123456789.').strip()
if item:
buffer.append(item)
flush(current)
return sections
# ==============================
# LOAD PDFs
# ==============================
def load_pdfs(folder="data"):
docs = []
if not os.path.exists(folder):
os.makedirs(folder)
return docs
for file in os.listdir(folder):
if file.endswith(".pdf"):
try:
reader = PdfReader(os.path.join(folder, file))
for page in reader.pages:
text = page.extract_text()
if text:
docs.append(Document(page_content=text))
except Exception as e:
print(f"Error loading {file}: {e}")
return docs
# ==============================
# INIT RAG
# ==============================
def initialize_rag():
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-MiniLM-L6-v2")
if os.path.exists("faiss_index"):
return FAISS.load_local("faiss_index", embeddings, allow_dangerous_deserialization=True)
docs = load_pdfs()
if not docs:
return FAISS.from_texts(["No clinical guidelines loaded."], embeddings)
splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=50)
chunks = splitter.split_documents(docs)
vs = FAISS.from_documents(chunks, embeddings)
vs.save_local("faiss_index")
return vs
def get_vectorstore():
global VECTORSTORE
if VECTORSTORE is None:
with rag_lock:
if VECTORSTORE is None:
VECTORSTORE = initialize_rag()
return VECTORSTORE
# ==============================
# LLM CALL
# ==============================
def call_llm(llm_prompt):
import os
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
try:
res = requests.post(
"https://api.groq.com/openai/v1/chat/completions",
headers={"Authorization": f"Bearer {GROQ_API_KEY}", "Content-Type": "application/json"},
json={
"model": "llama-3.1-8b-instant",
"messages": [
{
"role": "system",
"content": (
"You are a senior physician and clinical decision support system. "
"Think like a board-certified doctor: diagnose precisely, treat conservatively, escalate when needed. "
"STRICT OUTPUT RULES: "
"Each section = maximum 2 lines. Do NOT repeat symptoms in assessment. "
"No full sentences β use structured labels only. No preamble. No conclusion. No filler text. "
"Do NOT use **, ##, or bullet dashes. Plain text only. "
"Antibiotics ONLY when bacterial infection is clearly and strongly indicated. "
"Patient safety is absolute β never suggest unsafe, contraindicated, or unnecessary drugs."
)
},
{"role": "user", "content": llm_prompt}
],
"max_tokens": 600,
"temperature": 0.15
},
timeout=45
)
if res.status_code == 200:
return res.json()["choices"][0]["message"]["content"]
else:
return f"ERROR: {res.text[:200]}"
except Exception as e:
print(f"β GROQ EXCEPTION: {str(e)}")
return f"ERROR: {str(e)}"
# ==============================
# SAFETY FILTER
# ==============================
def safety_filter(response):
# Remove any dosage numbers that sneak through
response = re.sub(r'\b\d+\s?(mg|g|ml|mcg|IU|kg)\b', '', response, flags=re.IGNORECASE)
response = re.sub(r'\b\d+\s?times?\s?(daily|a day)\b', '', response, flags=re.IGNORECASE)
response = re.sub(r'every\s+\d+\s+hours?', '', response, flags=re.IGNORECASE)
response = re.sub(r'for\s+\d+\s+days?', '', response, flags=re.IGNORECASE)
response = re.sub(r'once\s+daily|twice\s+daily|three\s+times\s+daily', '', response, flags=re.IGNORECASE)
# Clean up extra whitespace left behind
response = re.sub(r' +', ' ', response)
response = re.sub(r' ,', ',', response)
response = re.sub(r' \)', ')', response)
# Pregnancy warnings
if "pregnan" in response.lower():
response = re.sub(
r"\b(tetracycline|doxycycline|ciprofloxacin|levofloxacin|ibuprofen|naproxen|aspirin|trimethoprim|methotrexate|warfarin)\b",
lambda m: f"{m.group()} [AVOID IN PREGNANCY]",
response, flags=re.IGNORECASE
)
return response
# ==============================
# RESPONSE VALIDATION
# ==============================
def validate_response(response):
if not response or response.startswith("ERROR"):
return False
cleaned = re.sub(r'\*+', '', response).lower()
# Each list = acceptable variations of same section header
required_sections = [
["clinical assessment", "assessment:", "diagnosis:"],
["antibiotic necessity", "antibiotic:", "antibiotics:"],
["first-line therapy", "first-line", "first line", "first_line"],
["second-line", "second line", "second_line", "alternatives"],
["contraindication", "precaution", "avoid:"],
["recommended tests", "tests:", "investigations"],
["additional information", "additional info", "info needed"],
]
matched = 0
for section_variants in required_sections:
if any(variant in cleaned for variant in section_variants):
matched += 1
# Pass if at least 4 out of 7 sections found (lenient β avoids false fallback)
return matched >= 4
# ==============================
# RULE ENGINE
# ==============================
SYMPTOM_RULES = [
{
"name": "Malaria",
"keywords": ["chills", "rigors", "cyclical fever", "sweating", "malaria", "shivering"],
"required_any": ["fever", "chills", "sweating", "rigors"],
"antibiotic": "NO β antimalarial needed, not antibiotic",
"first_line": ["Artemether-Lumefantrine (Falciparum Malaria)", "Paracetamol (Fever)", "ORS (Hydration)"],
"second_line": ["IV Artesunate (Severe Malaria β hospital only)", "Chloroquine (Vivax Malaria)"],
"tests": ["Malaria RDT β rapid confirmation", "Blood smear β species identification", "CBC β severity check"],
"avoid": ["Aspirin β bleeding risk", "Ibuprofen β avoid in malaria", "Antibiotics β not indicated"],
},
{
"name": "Dengue Fever",
"keywords": ["dengue", "bone pain", "eye pain", "retro-orbital", "rash", "platelet", "breakbone"],
"required_any": ["fever", "rash", "bone pain", "joint pain", "eye pain"],
"antibiotic": "NO β viral disease, antibiotics strictly contraindicated",
"first_line": ["Paracetamol (Fever and Pain)", "ORS (Hydration)", "Rest"],
"second_line": ["IV Fluids (if severe dengue β hospital)"],
"tests": ["NS1 Antigen β early dengue confirmation", "CBC with Platelet β thrombocytopenia check", "Dengue IgM/IgG β serology"],
"avoid": ["Ibuprofen β severe bleeding risk", "Aspirin β bleeding risk", "Diclofenac β avoid", "Antibiotics β not indicated"],
},
{
"name": "Typhoid Fever",
"keywords": ["typhoid", "abdominal pain", "constipation", "rose spots", "enteric"],
"required_any": ["fever", "abdominal pain", "nausea", "vomiting"],
"antibiotic": "YES β bacterial infection, antibiotic required",
"first_line": ["Azithromycin (Typhoid β safest oral)", "Paracetamol (Fever)"],
"second_line": ["Ceftriaxone (Severe Typhoid β IV)", "Ciprofloxacin (if sensitive β avoid in pregnancy/children)"],
"tests": ["Widal Test β typhoid serology", "Blood Culture β gold standard", "CBC β infection screen"],
"avoid": ["NSAIDs β GI bleed risk in typhoid", "Ciprofloxacin β avoid in pregnancy and children"],
},
{
"name": "Urinary Tract Infection (UTI)",
"keywords": ["burning urination", "frequent urination", "dysuria", "uti", "urinary", "cloudy urine", "pelvic pain"],
"required_any": ["burning", "urination", "dysuria", "pelvic pain", "urinary"],
"antibiotic": "YES β bacterial infection confirmed",
"first_line": ["Nitrofurantoin (UTI β safest first line)", "Paracetamol (Pain relief)"],
"second_line": ["Cefixime (if resistance suspected)", "Co-amoxiclav (complicated UTI)"],
"tests": ["Urine Routine/Microscopy β UTI confirmation", "Urine Culture β sensitivity testing"],
"avoid": ["Trimethoprim β avoid in pregnancy and elderly", "Fluoroquinolones β avoid in pregnancy"],
},
{
"name": "Pyelonephritis (Upper UTI)",
"keywords": ["flank pain", "loin pain", "back pain", "rigors", "vomiting", "high fever"],
"required_any": ["burning urination", "dysuria", "urinary", "frequent urination"],
"antibiotic": "YES β upper UTI requires systemic antibiotic",
"first_line": ["Co-amoxiclav (Pyelonephritis β oral)", "Paracetamol (Fever)"],
"second_line": ["Ceftriaxone IV (Severe β hospital only)", "Ciprofloxacin (if sensitivities allow β avoid in pregnancy)"],
"tests": ["Urine Culture & Sensitivity β mandatory", "CBC β severity assessment", "Renal Function Tests β kidney involvement", "Ultrasound KUB β structural assessment"],
"avoid": ["Nitrofurantoin β NOT effective for upper UTI", "Trimethoprim β resistance risk"],
},
{
"name": "Community Acquired Pneumonia",
"keywords": ["pneumonia", "productive cough", "chest pain", "breathlessness", "sputum"],
"required_any": ["cough", "chest pain", "breathlessness", "fever", "sputum"],
"antibiotic": "YES β bacterial pneumonia likely",
"first_line": ["Amoxicillin (Pneumonia β first line)", "Paracetamol (Fever)", "ORS (Hydration)"],
"second_line": ["Azithromycin (Penicillin allergy or atypical)", "Amoxicillin-Clavulanate (Severe)"],
"tests": ["Chest X-Ray β consolidation confirmation", "CBC β infection severity", "Sputum Culture β pathogen identification"],
"avoid": ["NSAIDs β avoid if bleeding risk"],
},
{
"name": "Influenza / Viral Fever",
"keywords": ["flu", "influenza", "myalgia", "body ache", "fatigue", "runny nose", "sore throat", "viral"],
"required_any": ["fever", "body ache", "fatigue", "cough", "sore throat"],
"antibiotic": "NO β viral infection, antibiotics not indicated",
"first_line": ["Paracetamol (Fever and Body Ache)", "ORS (Hydration)", "Rest", "Vitamin C (Immune support)"],
"second_line": ["Oseltamivir (Within 48 hours of onset only)"],
"tests": ["CBC β rule out secondary bacterial infection", "Rapid Influenza Test β if available"],
"avoid": ["Aspirin β Reye's syndrome risk", "Antibiotics β not indicated"],
},
{
"name": "Cellulitis",
"keywords": ["cellulitis", "skin redness", "skin warmth", "skin infection", "erythema"],
"required_any": ["redness", "swelling", "warmth", "skin"],
"antibiotic": "YES β bacterial skin infection",
"first_line": ["Flucloxacillin (Cellulitis β first line)", "Paracetamol (Pain and Fever)"],
"second_line": ["Clindamycin (Penicillin allergy)", "Co-amoxiclav (Polymicrobial)"],
"tests": ["CBC β infection severity", "CRP β inflammatory marker"],
"avoid": ["Penicillin β if allergy reported"],
},
{
"name": "Otitis Media",
"keywords": ["ear pain", "earache", "ear discharge", "otitis", "ear infection"],
"required_any": ["ear pain", "earache", "ear"],
"antibiotic": "CONDITIONAL β observe 48-72hrs first, antibiotics if not improving",
"first_line": ["Paracetamol (Pain relief β watchful waiting 48-72hrs)", "Warm compress"],
"second_line": ["Amoxicillin (If not improving after 72hrs)"],
"tests": ["Otoscopy β tympanic membrane assessment"],
"avoid": ["Aspirin β children", "Ciprofloxacin ear drops β only for perforated drum"],
},
{
"name": "Gastroenteritis / Food Poisoning",
"keywords": ["diarrhea", "vomiting", "abdominal cramps", "loose stools", "food poisoning", "outside food", "gastroenteritis", "nausea"],
"required_any": ["vomiting", "diarrhea", "abdominal cramps", "loose stools", "nausea"],
"antibiotic": "NO β usually viral or self-limiting bacterial, antibiotics rarely needed",
"first_line": ["ORS (Rehydration β priority)", "Paracetamol (Fever)", "Rest", "Zinc (if child)"],
"second_line": ["Not applicable β supportive care sufficient in most cases"],
"tests": ["Stool Routine β only if bloody diarrhea or fever > 3 days", "Stool Culture β if Salmonella/Shigella suspected"],
"avoid": ["Antibiotics β not indicated for routine gastroenteritis", "Ibuprofen β GI irritation risk"],
},
{
"name": "Acute Sinusitis (Viral)",
"keywords": ["facial pain", "nasal congestion", "sinus", "sinusitis", "pressure around eyes", "blocked nose"],
"required_any": ["facial pain", "nasal congestion", "headache", "blocked nose", "sinus"],
"antibiotic": "NO β >90% viral, antibiotics not indicated in first 10 days",
"first_line": ["Paracetamol (Pain and Fever)", "Saline nasal rinse (Congestion)", "Steam inhalation", "Rest"],
"second_line": ["Amoxicillin (Only if symptoms worsen after 10 days or severe bacterial signs)"],
"tests": ["None required β clinical diagnosis sufficient for mild sinusitis"],
"avoid": ["Antibiotics in first 10 days β viral cause likely", "Decongestant sprays > 3 days β rebound congestion"],
},
{
"name": "Tonsillitis / Pharyngitis",
"keywords": ["sore throat", "throat pain", "difficulty swallowing", "tonsil", "pharyngitis", "strep"],
"required_any": ["sore throat", "throat pain", "difficulty swallowing"],
"antibiotic": "CONDITIONAL β viral in 70% of cases; antibiotic only if bacterial strep suspected",
"first_line": ["Paracetamol (Pain and Fever)", "Salt water gargles", "Rest", "ORS (Hydration)"],
"second_line": ["Amoxicillin (If Strep throat confirmed or strongly suspected β avoid if penicillin allergy)", "Azithromycin (Penicillin allergy)"],
"tests": ["Throat Swab Culture β only if bacterial strep strongly suspected", "Rapid Strep Test β if available"],
"avoid": ["Aspirin β children (Reye's syndrome)", "Amoxicillin β if penicillin allergy or EBV suspected (causes rash)"],
},
{
"name": "Tuberculosis (TB)",
"keywords": ["weight loss", "night sweats", "prolonged fever", "weeks", "tuberculosis", "tb", "haemoptysis", "blood in sputum"],
"required_any": ["cough", "weight loss", "night sweats", "fever", "fatigue"],
"antibiotic": "YES β anti-TB therapy required (specialist-supervised)",
"first_line": ["Refer to specialist β TB requires DOTS therapy (specialist-supervised)", "Paracetamol (Fever)"],
"second_line": ["DOTS Regimen (HRZE β Isoniazid, Rifampicin, Pyrazinamide, Ethambutol β specialist only)"],
"tests": ["Chest X-Ray β bilateral infiltrates/cavitation", "Sputum AFB Smear β TB confirmation", "Mantoux Test β TB exposure", "CBNAAT/GeneXpert β rapid TB and drug resistance"],
"avoid": ["Self-medication β incomplete treatment causes drug resistance", "Fluoroquinolones without TB ruled out β masks TB"],
},
{
"name": "Sepsis / Septic Shock",
"keywords": ["confusion", "low blood pressure", "hypotension", "fast breathing", "sepsis", "septic shock", "cold clammy", "organ failure"],
"required_any": ["fever", "confusion", "low blood pressure", "fast breathing", "weakness"],
"antibiotic": "YES β broad-spectrum IV antibiotics required immediately",
"first_line": ["EMERGENCY: Immediate hospital referral required", "IV Piperacillin-Tazobactam (Broad-spectrum β hospital only)", "IV Normal Saline bolus (Fluid resuscitation)", "Norepinephrine (Vasopressor β ICU only if BP unresponsive)"],
"second_line": ["IV Meropenem (If resistant organisms suspected)", "IV Vancomycin (If MRSA suspected)"],
"tests": ["Blood Culture x2 β before antibiotics if possible", "CBC β infection severity", "Lactate β sepsis severity marker", "Renal Function Tests β organ involvement", "CRP/Procalcitonin β sepsis confirmation"],
"avoid": ["Delay in antibiotics β every hour delay increases mortality", "Oral antibiotics β IV route required"],
},
]
CRITICAL_KEYWORDS = [
"altered consciousness", "confusion", "seizure", "fits",
"difficulty breathing", "severe breathlessness", "can't breathe",
"stiff neck", "photophobia", "neck stiffness",
"uncontrolled bleeding", "coughing blood", "blood in stool",
"crushing chest pain", "chest pain with sweating",
"unconscious", "not passing urine",
"high fever", "fever more than 5 days", "fever not responding to medication",
"severe dehydration", "unable to swallow", "persistent vomiting",
"severe headache with neck stiffness", "rash with fever",
# Septic shock triggers
"low blood pressure", "hypotension", "fast breathing", "rapid breathing",
"septic shock", "sepsis", "organ failure", "cold clammy",
]
def run_rule_engine(condition_text, allergies_text, pregnancy_status="Not mentioned", diabetes="Not mentioned", age="Not specified"):
text = condition_text.lower()
allergy_text = allergies_text.lower()
is_pregnant = pregnancy_status.lower() not in ["not mentioned", "no", "none", ""]
is_diabetic = diabetes.lower() not in ["not mentioned", "no", "none", ""]
is_child = any(w in text for w in ["child", "baby", "infant", "toddler", "kid"]) or \
(age.isdigit() and int(age) < 18)
is_critical = any(kw in text for kw in CRITICAL_KEYWORDS)
matched_rules = []
for rule in SYMPTOM_RULES:
keyword_hit = any(kw in text for kw in rule["keywords"])
required_hit = any(kw in text for kw in rule["required_any"])
if keyword_hit and required_hit:
matched_rules.append(rule)
# PYELONEPHRITIS PRIORITY: fever + vomiting + back/flank pain β override plain UTI
pyelonephritis_triggers = ["fever", "vomiting", "back pain", "flank pain", "loin pain", "rigors", "high fever"]
has_upper_uti_flags = any(kw in text for kw in pyelonephritis_triggers)
matched_names = [r["name"] for r in matched_rules]
if "Pyelonephritis (Upper UTI)" in matched_names and "Urinary Tract Infection (UTI)" in matched_names and has_upper_uti_flags:
matched_rules = [r for r in matched_rules if r["name"] != "Urinary Tract Infection (UTI)"]
allergy_warnings = []
if "penicillin" in allergy_text:
allergy_warnings.append("Penicillin allergy β avoid Amoxicillin, Flucloxacillin, Co-amoxiclav")
if "sulfa" in allergy_text or "sulphonamide" in allergy_text:
allergy_warnings.append("Sulfa allergy β avoid Trimethoprim-Sulfamethoxazole")
if "aspirin" in allergy_text or "nsaid" in allergy_text:
allergy_warnings.append("NSAID/Aspirin allergy β avoid all NSAIDs")
if "metformin" in allergy_text or is_diabetic:
allergy_warnings.append("Diabetic patient β flag Ciprofloxacin interaction risk; prefer safer alternatives")
allergy_warnings.append("Diabetic + UTI β Nitrofurantoin preferred over Fluoroquinolones")
# Pregnancy-specific warnings β only if explicitly mentioned
if is_pregnant:
allergy_warnings.append("PREGNANCY NOTED β avoid Fluoroquinolones, Tetracyclines, Trimethoprim, NSAIDs, Clarithromycin")
allergy_warnings.append("PREGNANCY + UTI β Nitrofurantoin safe only in 1st/2nd trimester; prefer Cefalexin if trimester unknown")
allergy_warnings.append("PREGNANCY + Pneumonia β Azithromycin (Category B) preferred; Clarithromycin (Category C) β AVOID")
# Child-specific warnings
if is_child:
allergy_warnings.append("CHILD PATIENT β avoid Aspirin (Reye's syndrome risk); avoid Fluoroquinolones under 18")
allergy_warnings.append("CHILD PATIENT β weight-based dosing needed; flag in Additional Information Needed")
return {"is_critical": is_critical, "matched_rules": matched_rules, "allergy_warnings": allergy_warnings}
# ==============================
# CORE CLINICAL ENGINE
# ==============================
def clinical_engine(data):
vs = get_vectorstore()
query = f"Symptoms: {data.get('condition')} Allergies: {data.get('allergies')} Medications: {data.get('medications')}"
try:
docs = vs.as_retriever(search_kwargs={"k": 3}).invoke(query)
context = "\n\n".join(d.page_content[:500] for d in docs)
except Exception:
context = "General medical guidelines apply."
condition = data.get('condition', '')
allergies = data.get('allergies', 'None')
medications = data.get('medications', 'None')
age = data.get('age', 'Not specified')
pregnancy_status = data.get('pregnancy', 'Not mentioned')
diabetes = data.get('diabetes', 'Not mentioned')
renal_issues = data.get('renal_issues', 'Not mentioned')
# Run rule engine β pass all patient factors
rules = run_rule_engine(condition, allergies, pregnancy_status, diabetes, age)
matched = rules["matched_rules"]
is_critical = rules["is_critical"]
allergy_warnings = rules["allergy_warnings"]
# Septic Shock override β if critical AND confusion + hypotension present β force emergency
septic_flags = ["confusion", "low blood pressure", "hypotension", "fast breathing", "sepsis", "septic"]
septic_hit = sum(1 for kw in septic_flags if kw in condition.lower())
is_septic_shock = septic_hit >= 2
# Build rule hints for LLM
rule_hint = ""
if is_critical:
rule_hint += "CRITICAL EMERGENCY DETECTED β Recommend immediate hospital referral.\n"
if is_septic_shock:
rule_hint += (
"SEPTIC SHOCK PATTERN DETECTED β MANDATORY RULES:\n"
" 1. Clinical Assessment MUST start with: EMERGENCY: Immediate hospital referral required.\n"
" 2. First-Line MUST include: IV Broad-Spectrum Antibiotics (Piperacillin-Tazobactam or Meropenem β hospital only)\n"
" 3. First-Line MUST include: IV Fluid Resuscitation (Normal Saline bolus)\n"
" 4. First-Line MUST include: Vasopressors if BP not responding (Norepinephrine β ICU only)\n"
" 5. Additional Information Needed MUST say: EMERGENCY β ICU admission required immediately.\n"
)
if matched:
rule_hint += "\nRule Engine Pre-Analysis (HIGH CONFIDENCE β follow unless contradicted):\n"
for r in matched:
rule_hint += f" Disease: {r['name']}\n"
rule_hint += f" Antibiotic: {r['antibiotic']}\n"
rule_hint += f" First-Line: {', '.join(r['first_line'][:3])}\n"
rule_hint += f" Key Tests: {', '.join(r['tests'][:3])}\n"
rule_hint += f" Avoid: {', '.join(r['avoid'][:3])}\n\n"
if allergy_warnings:
rule_hint += "Allergy Alerts:\n" + "\n".join(f" - {w}" for w in allergy_warnings) + "\n"
if not matched:
rule_hint += "No strong pattern match. Use clinical reasoning based on symptoms only.\n"
llm_prompt = f"""
You are a senior physician and clinical decision support system (CDS).
IMPORTANT: The Rule Engine below has pre-analyzed this case. You MUST follow it unless you have strong clinical reason to deviate.
========================
RULE ENGINE OUTPUT
========================
{rule_hint}
========================
INPUT DATA
========================
Symptoms: {condition}
Allergies: {allergies}
Current Medications: {medications}
Age: {age}
Pregnancy Status: {pregnancy_status}
Diabetes: {diabetes}
Renal Issues: {renal_issues}
Clinical Guidelines (PDF Context):
{context}
========================
REASONING FRAMEWORK (POORQA)
========================
Step 1: Pattern Recognition
- Analyze symptom combinations carefully
- Identify if symptoms strongly match a known clinical pattern
- If a strong pattern exists β prefer a specific diagnosis
- If no clear pattern β use general diagnosis cautiously
Step 2: Differential Diagnosis
- List top 1β3 most likely diseases
- Rank them by probability (most likely first)
- Do NOT include unrelated diseases
Step 3: Antibiotic Decision
- Decide: YES / NO / ALTERNATIVE (e.g., antiviral/antiparasitic)
- Antibiotics ONLY if strong bacterial evidence
- If unclear β DO NOT give antibiotics
Step 4: Treatment Selection
- First-line = safest effective option
- Second-line = only if needed
- Treatment MUST match primary diagnosis ONLY
- DO NOT mix treatments from different diseases
Step 5: Safety Check (CRITICAL)
- Check allergies
- Check drug safety
- Avoid:
- Unnecessary antibiotics
- NSAIDs in suspected bleeding-risk conditions
- Steroids unless clearly indicated
- Prefer safest drug (e.g., paracetamol over NSAIDs when uncertain)
Step 6: Test Justification
- Mild case + clear clinical pattern β 0 tests needed, write "None required"
- Moderate suspicion β 1β2 targeted confirmatory tests only
- Severe or uncertain diagnosis β targeted panel only, no blanket ordering
- DO NOT suggest CBC routinely for every case
- Each test MUST have a specific clinical reason stated after a dash
Step 7: Final Validation
Before answering, ensure:
- No hallucinated symptoms added
- No unsafe drug suggested
- No missing critical test
- No vague diagnosis if specific possible
========================
STRICT RULES
========================
- NEVER assume symptoms not provided
- NEVER give antibiotics without clear bacterial indication
- NEVER use vague diagnosis if a strong clinical pattern exists
- NEVER suggest contraindicated or harmful drugs
- ALWAYS prioritize patient safety above all else
- ALWAYS be clinically logical and consistent
- Viral fever / dengue / malaria / flu β antibiotics ABSOLUTELY PROHIBITED
- Mild URI or cold < 3 days β supportive care ONLY, no antibiotics
- If bacterial infection is UNCLEAR β do NOT give antibiotics; recommend 48hr monitoring
- If CRITICAL emergency (chest pain + sweating, unconscious, heavy bleeding, can't breathe, stiff neck) β
Clinical Assessment MUST start with "EMERGENCY: Immediate hospital referral required."
- Consider patient age, allergies, comorbidities (diabetes, renal issues) in every recommendation
- Include pregnancy contraindications ONLY if pregnancy_status is explicitly mentioned by user β do NOT assume
- Elderly or renal impairment β avoid Nitrofurantoin for upper UTI; flag renally-cleared drug risks
- Diabetic patients β flag Ciprofloxacin interaction risk where relevant
========================
OUTPUT FORMAT (STRICT)
========================
Use EXACTLY these section headers in this order β do not rename, skip, or reorder:
Clinical Assessment:
[Top 2β3 differential diagnoses ranked by probability. Format each on its own line:
1. Most Likely: [Disease] β [one clinical reason from given symptoms only]
2. Also Consider: [Disease] β [one clinical reason]
3. Less Likely: [Disease] β [only if genuinely relevant]
Do NOT repeat symptoms. Do NOT invent symptoms not provided.]
Antibiotic Necessity:
[YES / NO / ANTIMALARIAL / ANTIVIRAL β one short reason. Must match primary diagnosis.]
First-Line Therapy:
[One drug per line. Format: DrugName (Condition). No doses.
If NO antibiotic: supportive care only β Paracetamol, ORS, Rest, Vitamin C as appropriate.
If YES antibiotic: safest guideline-based antibiotic first.]
Second-Line Alternatives:
[If antibiotic YES: 1β2 guideline-based alternatives, one per line.
If antibiotic NO: write β Not applicable β [reason e.g. viral infection]
NEVER write an antibiotic here when Antibiotic Necessity = NO.]
Contraindications & Precautions:
[Drug to avoid β reason. One per line.
Check allergies and current medications.
Pregnancy warnings ONLY if pregnancy was explicitly mentioned.
Write None if nothing applicable.]
Recommended Tests:
[TestName β specific reason. One per line.
Mild case with clear diagnosis β write: None required β clinical diagnosis sufficient
Moderate/severe or uncertain β targeted confirmatory tests only, no blanket panels.]
Additional Information Needed:
[EMERGENCY cases β first line MUST be: EMERGENCY: Immediate hospital referral required.
Clear mild diagnosis β write: None
Otherwise β max 2 missing details that would change management.]
========================
MANDATORY CONSISTENCY RULES
========================
- Malaria / Dengue / Viral Fever / Influenza / Common Cold β Antibiotic MUST be NO
- If Antibiotic = NO β zero antibiotics in First-Line AND Second-Line
- Treatment must match primary diagnosis only β no mixing
- Never add symptoms not given by user
- Never leave a section empty β use None or Not applicable
- Never use ** ## or bullet dashes β plain text only
- Follow exact section headers above
PYELONEPHRITIS vs UTI (CRITICAL):
- Fever + vomiting + back pain/flank pain + urinary symptoms β PRIMARY = Pyelonephritis
- Nitrofurantoin PROHIBITED in Pyelonephritis β ineffective in kidney tissue
- Pyelonephritis β Co-amoxiclav oral or Ceftriaxone IV (severe)
- Simple UTI (no fever, no systemic symptoms) β Nitrofurantoin acceptable
PREGNANCY SAFETY (only if explicitly mentioned):
- Nitrofurantoin β trimester unknown β prefer Cefalexin instead
- Azithromycin β Category B β safe, preferred for pneumonia
- Clarithromycin β Category C β AVOID, flag in contraindications
- Fluoroquinolones, Tetracyclines, Trimethoprim, NSAIDs β AVOID
PNEUMONIA ANTIBIOTIC DECISION:
- High fever + chest pain + breathlessness + productive cough β bacterial β antibiotic YES
- Fatigue + body ache + mild cough only β viral first β no antibiotic without X-Ray confirmation
- Always recommend Chest X-Ray as first test for suspected pneumonia
SEPTIC SHOCK (MANDATORY):
- Fever + confusion + low BP + fast breathing β Septic Shock
- Assessment MUST start: EMERGENCY: Immediate hospital referral required.
- First-Line MUST include IV antibiotics + IV fluids + vasopressors if BP unresponsive
- Additional Info MUST say: EMERGENCY β ICU admission required immediately
DIABETIC PATIENTS:
- Flag Ciprofloxacin interaction risk if patient is diabetic on relevant medications
- Prefer safer alternatives where possible
CHILD PATIENTS:
- Avoid Aspirin β Reye's syndrome risk
- Avoid Fluoroquinolones in children under 18
- Dose adjustments may be needed β flag this in Additional Information Needed
"""
response = None
last_raw = None
for i in range(3):
raw = call_llm(llm_prompt)
if raw and not raw.startswith("ERROR"):
last_raw = raw
if validate_response(raw):
response = raw
break
print(f"β οΈ Retry {i+1}: validation failed")
else:
import time
time.sleep(10) # 10 second wait before retry
# Agar validation pass nahi hua lekin LLM ne kuch meaningful diya β use karo
if not response:
if last_raw and len(last_raw.strip()) > 100:
print("β οΈ Using last LLM response despite validation failure")
response = last_raw
else:
response = """Clinical Assessment:
Unable to determine diagnosis. Please consult a doctor immediately.
Antibiotic Necessity:
NO β Insufficient information to make a safe antibiotic decision.
First-Line Therapy:
Paracetamol (fever and pain relief) | ORS (hydration) | Rest
Second-Line Alternatives:
Not applicable β insufficient clinical information
Contraindications & Precautions:
Do not self-medicate without professional medical evaluation.
Recommended Tests:
Complete Blood Count (CBC) β Basic infection screening
Additional Information Needed:
Please provide full symptom history, duration, and severity to enable proper diagnosis.
"""
response = safety_filter(response)
return response
# ==============================
# API ENDPOINTS
# ==============================
@app.route("/analyze", methods=["POST"])
def analyze():
try:
data = request.get_json(force=True, silent=True)
if not data:
return jsonify({"status": "error", "message": "Invalid JSON"}), 400
# β
FIX: Empty symptoms check β fallback se bachao
condition = data.get('condition', '').strip()
if not condition:
return jsonify({
"status": "error",
"message": "Please enter symptoms before analyzing. The Symptoms / Condition field cannot be empty."
}), 400
result = clinical_engine(data)
parsed = parse_response(result)
db_temp = get_db()
count = db_temp.execute("SELECT COUNT(*) FROM patients").fetchone()[0]
year = datetime.now().strftime("%Y")
patient_id = f"P-{year}{str(count + 1).zfill(2)}"
result = clinical_engine(data)
parsed = parse_response(result)
save_to_db(patient_id, data, parsed)
def to_array(text):
if not text:
return []
items = []
for part in text.split(' | '):
part = part.strip().lstrip('-β’').strip()
if part:
items.append(part)
return items
summary_text = f"""
Clinical assessment: {parsed.get("assessment", "")}.
Antibiotic necessity: {parsed.get("antibiotic_necessity", "")}.
First line therapy: {parsed.get("first_line", "")}.
Recommended tests: {parsed.get("recommended_tests", "")}.
"""
return jsonify({
"status": "success",
"patient_id": patient_id,
"clinical_assessment": to_array(parsed.get("assessment", "")),
"antibiotic_necessity": parsed.get("antibiotic_necessity", "").strip(),
"first_line_therapy": to_array(parsed.get("first_line", "")),
"second_line_alternatives": to_array(parsed.get("second_line", "")),
"contraindications": [x for x in to_array(parsed.get("contraindications", "")) if x.lower() != "none"],
"recommended_tests": to_array(parsed.get("recommended_tests", "")),
"additional_info_needed": [x for x in to_array(parsed.get("additional_info_needed", "")) if x.lower() != "none"],
})
except Exception as e:
return jsonify({"status": "error", "message": str(e)})
@app.route("/patients", methods=["GET"])
def get_patients():
try:
db = get_db()
rows = db.execute("SELECT * FROM patients ORDER BY timestamp DESC").fetchall()
patients = [dict(row) for row in rows]
return jsonify({"status": "success", "patients": patients})
except Exception as e:
return jsonify({"status": "error", "message": str(e)})
# ==============================
# SMART TTS β OpenAI β ElevenLabs β gTTS fallback
# ==============================
def generate_tts(text, lang="en"):
"""
Tries TTS providers in order of quality:
1. OpenAI TTS (onyx = deep calm male, nova = female)
2. ElevenLabs
3. gTTS (fallback)
Returns: (filepath, filename) or raises Exception
"""
os.makedirs("static", exist_ok=True)
filename = f"tts_{uuid.uuid4().hex}.mp3"
path = os.path.join("static", filename)
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY", "").strip()
ELEVENLABS_KEY = os.getenv("ELEVENLABS_API_KEY", "").strip()
ELEVENLABS_VOICE = os.getenv("ELEVENLABS_VOICE_ID", "ErXwobaYiN019PkySvjV")
print(f"π TTS: OpenAI key present = {bool(OPENAI_API_KEY)}, ElevenLabs = {bool(ELEVENLABS_KEY)}")
# ββ 1. OpenAI TTS (best quality, natural, no pauses) ββ
if OPENAI_API_KEY:
try:
voice = "onyx" # Deep, calm male β Jarvis feel
if lang == "hi":
voice = "onyx" # onyx handles Hindi well too
resp = requests.post(
"https://api.openai.com/v1/audio/speech",
headers={
"Authorization": f"Bearer {OPENAI_API_KEY}",
"Content-Type": "application/json"
},
json={
"model": "tts-1-hd", # HD = higher quality, smoother
"input": text,
"voice": voice,
"speed": 0.92, # Calm, measured doctor pace
"response_format": "mp3"
},
timeout=20
)
if resp.status_code == 200:
with open(path, "wb") as f:
f.write(resp.content)
print("β
TTS: OpenAI")
return path, filename
else:
print(f"OpenAI TTS error {resp.status_code}: {resp.text[:100]}")
except Exception as e:
print(f"OpenAI TTS exception: {e}")
# ββ 2. ElevenLabs (most natural, best for Hindi too) ββ
if ELEVENLABS_KEY:
try:
resp = requests.post(
f"https://api.elevenlabs.io/v1/text-to-speech/{ELEVENLABS_VOICE}",
headers={
"xi-api-key": ELEVENLABS_KEY,
"Content-Type": "application/json"
},
json={
"text": text,
"model_id": "eleven_multilingual_v2",
"voice_settings": {
"stability": 0.55,
"similarity_boost": 0.80,
"style": 0.20,
"use_speaker_boost": True
}
},
timeout=20
)
if resp.status_code == 200:
with open(path, "wb") as f:
f.write(resp.content)
print("β
TTS: ElevenLabs")
return path, filename
else:
print(f"ElevenLabs TTS error {resp.status_code}: {resp.text[:100]}")
except Exception as e:
print(f"ElevenLabs TTS exception: {e}")
# ββ 3. gTTS fallback (basic but works) ββ
try:
tts_lang_code = "hi" if lang == "hi" else "en"
tts_obj = gTTS(text=text, lang=tts_lang_code, slow=False)
tts_obj.save(path)
print("β οΈ TTS: gTTS fallback")
return path, filename
except Exception as e:
raise Exception(f"All TTS providers failed. Last error: {e}")
@app.route("/tts", methods=["POST"])
def tts():
try:
data = request.get_json()
text = data.get("text", "").strip()
lang = data.get("lang", "en")
if not text:
return jsonify({"error": "Empty text"}), 400
path, filename = generate_tts(text, lang)
return jsonify({"audio_url": f"/static/{filename}"})
except Exception as e:
return jsonify({"error": str(e)})
# ==============================
# CONVERSATIONAL DOCTOR ENDPOINT
# ==============================
DOCTOR_SYSTEM_PROMPT = """You are Dr. Safecure β an intelligent AI doctor, like Jarvis or Siri but for medicine.
You talk like a calm, confident, real human doctor. Natural. Direct. Never robotic or stiff.
You have clinical guidelines from PDFs available as context β use them for all recommendations.
YOUR VOICE & STYLE:
- Sound like a real doctor talking to a patient face to face. Warm but not over-the-top.
- Short natural sentences. Like how a person actually speaks.
- NO filler: never say "I understand your concern", "That sounds difficult", "Great question", "Certainly" etc.
- NO markdown: no **, ##, dashes as bullets. Plain text only during conversation.
- Respond in the SAME language the patient speaks (Hindi or English).
CONSULTATION FLOW:
1. Greet once, naturally. Ask the main problem.
2. Ask ONE follow-up question at a time. Max 3 follow-ups total. Be brief.
3. Once you have enough info (symptom + duration + allergies/current meds) β immediately give FINAL ASSESSMENT.
4. Use the special final assessment format below (EXACTLY).
EMERGENCY OVERRIDE: If patient says chest pain with sweating, can't breathe, unconscious, heavy bleeding β say:
"This sounds like an emergency. Please call an ambulance or go to the nearest hospital right now. Don't wait."
Then stop. Nothing else.
FINAL ASSESSMENT FORMAT (use EXACTLY when you have enough info):
When ready to give your final assessment, output it in this exact format β each section on its own line with the label followed by a colon and the content. Do not use bullets or dashes:
DIAGNOSIS: [Most likely condition and brief reason why]
FIRST LINE: [Primary medicines β drug names only, no doses, each separated by comma]
SECOND LINE: [Alternative medicines if first line fails or is contraindicated β or write "Not needed"]
TESTS: [Recommended tests β each separated by comma, with brief reason after a dash]
AVOID: [Medicines or things to avoid β or write "None"]
NOTE: [One short sentence of important advice for the patient]
ANTIBIOTIC RULES (NON-NEGOTIABLE):
- Viral fever, dengue, malaria, flu, cold, sore throat β NEVER prescribe antibiotics under any circumstance
- Antibiotics ONLY when bacterial infection is strongly and clearly suspected
- Mild URI / cough < 3 days β supportive care ONLY (Paracetamol, ORS, Rest)
- If bacterial vs viral is unclear β say "Monitor for 48 hours β antibiotics not needed yet"
- Include pregnancy contraindications ONLY if patient explicitly mentions being pregnant
RULES:
Step 1: Pattern Recognition
- Analyze symptom combinations carefully
- Identify if symptoms strongly match a known clinical pattern
- If a strong pattern exists β prefer a specific diagnosis
- If no clear pattern β use general diagnosis cautiously
Step 2: Differential Diagnosis
- List top 1 (or 2 if needed) most likely diseases
- Rank them by probability (most likely first)
- Do NOT include unrelated diseases
Step 3: Antibiotic Decision
- Decide: YES / NO / ALTERNATIVE (e.g., antiviral/antiparasitic)
- Antibiotics ONLY if strong bacterial evidence
- If unclear β DO NOT give antibiotics
Step 4: Treatment Selection
- First-line = safest effective option
- Second-line = only if needed
- Treatment MUST match primary diagnosis ONLY
- DO NOT mix treatments from different diseases
Step 5: Safety Check (CRITICAL)
- Check allergies
- Check drug safety
- Avoid:
- Unnecessary antibiotics
- NSAIDs in suspected bleeding-risk conditions
- Steroids unless clearly indicated
- Prefer safest drug (e.g., paracetamol over NSAIDs when uncertain)
Step 6: Test Justification
- Suggest tests ONLY if clinically needed
- If strong suspicion of specific disease β MUST suggest confirmatory test
- DO NOT skip tests in moderate/high suspicion cases
Step 7: Final Validation
Before answering, ensure:
- No hallucinated symptoms added
- No unsafe drug suggested
- No missing critical test
- No vague diagnosis if specific possible
========================
STRICT RULES
========================
- NEVER assume symptoms not provided
- NEVER give antibiotics without clear indication
- NEVER use vague diagnosis if a strong pattern exists
- NEVER suggest harmful or contraindicated drugs
- ALWAYS prioritize patient safety
- ALWAYS be clinically logical and consistent
========================
MANDATORY CONSISTENCY RULES
========================
- If diagnosis is Malaria/Dengue/Viral β Antibiotic MUST be NO
- If Antibiotic = NO β ZERO antibiotics in First-Line or Second-Line
- Treatment MUST match primary diagnosis
- Do NOT add symptoms that were not given
- Do NOT leave any section empty
- NEVER use ** or ## or bullet points in output"""
@app.route("/chat", methods=["POST"])
def chat():
try:
data = request.get_json(force=True, silent=True)
if not data:
return jsonify({"status": "error", "message": "Invalid JSON"}), 400
conversation_history = data.get("history", [])
user_message = data.get("message", "").strip()
lang = data.get("lang", "en")
if not user_message:
return jsonify({"status": "error", "message": "Empty message"}), 400
# Build messages array for Groq
messages = [{"role": "system", "content": DOCTOR_SYSTEM_PROMPT}]
# RAG context retrieve karo
rag_context = "No clinical guidelines available."
try:
all_user_text = " ".join(
t["content"] for t in conversation_history if t.get("role") == "user"
) + " " + user_message
vs = get_vectorstore()
docs = vs.as_retriever(search_kwargs={"k": 4}).invoke(all_user_text)
rag_context = "\n\n".join(d.page_content[:400] for d in docs)
except Exception as e:
print(f"RAG error in chat: {e}")
# RAG system context inject karo
messages.append({
"role": "system",
"content": f"CLINICAL GUIDELINES FROM PDF (use these for recommendations):\n{rag_context}"
})
# Pehle conversation history add karo
for turn in conversation_history:
if turn.get("role") in ("user", "assistant"):
messages.append({"role": turn["role"], "content": turn["content"]})
# OpenMed NER β entities extract karo user message se
openmed_context = ""
if OPENMED_AVAILABLE and openmed_ner:
try:
entities = openmed_ner(user_message)
detected = list(set([
e['word'].strip() for e in entities
if e['score'] > 0.7 and len(e['word'].strip()) > 2
]))
if detected:
openmed_context = f"\n[OpenMed detected clinical entities: {', '.join(detected)}]"
print(f"π¬ OpenMed entities: {detected}")
except Exception as e:
print(f"OpenMed NER error: {e}")
# Enriched user message aakhir mein append karo
enriched_message = user_message + openmed_context
messages.append({"role": "user", "content": enriched_message})
# Groq API call
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
res = requests.post(
"https://api.groq.com/openai/v1/chat/completions",
headers={"Authorization": f"Bearer {GROQ_API_KEY}", "Content-Type": "application/json"},
json={
"model": "llama-3.1-8b-instant",
"messages": messages,
"max_tokens": 480,
"temperature": 0.2,
},
timeout=30
)
if res.status_code != 200:
return jsonify({"status": "error", "message": f"LLM error: {res.text[:200]}"}), 500
reply = res.json()["choices"][0]["message"]["content"]
reply = safety_filter(reply)
# TTS generate karo
tts_url = None
try:
tts_text = reply
import re as _re
tts_text = _re.sub(r'(DIAGNOSIS|FIRST LINE|SECOND LINE|TESTS|AVOID|NOTE):\s*', '', tts_text)
_, fname = generate_tts(tts_text.strip(), lang)
tts_url = f"/static/{fname}"
except Exception as e:
print(f"TTS error in chat: {e}")
return jsonify({
"status": "success",
"reply": reply,
"audio_url": tts_url
})
except Exception as e:
return jsonify({"status": "error", "message": str(e)})
@app.route("/health", methods=["GET"])
def health():
return jsonify({"status": "healthy"})
@app.route("/")
def home():
return render_template("chatbot.html")
@app.route("/database")
def database_page():
return render_template("history.html")
# ==============================
# RUN
# ==============================
if __name__ == '__main__':
print("π Initializing Safecure AI...")
init_db()
get_vectorstore()
# print("β
Ready! Visit http://localhost:5000")
port = int(os.environ.get('PORT', 7860))
app.run(host='0.0.0.0', port=port,debug=False) |