Spaces:
Sleeping
Sleeping
File size: 17,981 Bytes
c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 c32bf13 e1242f6 | 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 | from dotenv import load_dotenv
load_dotenv()
import gradio as gr
from database.db import (
init_db,
create_patient,
get_all_patients,
get_patient,
create_session,
update_transcript,
close_session,
save_note,
save_symptoms,
get_sessions_for_patient,
get_note_for_session,
get_symptoms_for_session,
)
from transcription.transcriber import transcribe_file
from agents.symptom_agent import extract_symptoms, format_symptoms_for_display
from agents.cloud_agents import generate_soap_note, generate_patient_summary, clean_and_label_transcript, analyze_medical_document
from rag.retriever import (
ensure_kb,
retrieve_icd_codes,
retrieve_drug_info,
format_icd_context,
format_drug_context,
)
# ββ Startup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
init_db()
ensure_kb()
# ββ State βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_labelled_transcript: str = ""
_document_analysis: str = ""
_current_session_id: int | None = None
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _patient_choices() -> list[str]:
patients = get_all_patients()
return [f"{p['id']} β {p['name']}" for p in patients] if patients else []
def _parse_patient_choice(choice: str) -> int:
return int(choice.split("β")[0].strip())
def _format_icd_panel(codes: list[dict]) -> str:
if not codes:
return "_No ICD-10 suggestions._"
lines = ["### Suggested ICD-10 Codes\n"]
for c in codes:
lines.append(f"- **{c['code']}** β {c['description']} *(confidence: {c['score']})*")
return "\n".join(lines)
def _format_drug_panel(drugs: list[dict]) -> str:
if not drugs:
return "_No drug references matched._"
lines = ["### Drug Reference\n"]
for d in drugs:
lines.append(
f"**{d['name']}** ({d['class']})\n"
f"- Adult dose: {d['adult_dose']}\n"
f"- Indications: {d['indications']}\n"
f"- Caution: {d['contraindications']}\n"
)
return "\n".join(lines)
# ββ Tab 1: Live Consultation ββββββββββββββββββββββββββββββββββββββββββββββββββ
def register_patient(name, dob, gender, phone):
if not name.strip():
return gr.update(), "Please enter a patient name."
pid = create_patient(name.strip(), dob, gender, phone)
choices = _patient_choices()
new_val = next((c for c in choices if c.startswith(str(pid))), choices[-1] if choices else None)
return gr.update(choices=choices, value=new_val), f"Patient '{name}' registered (ID {pid})."
def transcribe_recording(patient_choice, doctor_name, audio_path):
"""Called when the mic recording stops. Transcribes and cleans the audio."""
global _current_session_id, _labelled_transcript
if not patient_choice:
return "No patient selected.", ""
if audio_path is None:
return "No audio recorded.", ""
pid = _parse_patient_choice(patient_choice)
_current_session_id = create_session(pid, doctor_name or "Doctor")
_labelled_transcript = ""
raw = transcribe_file(audio_path)
if not raw:
return "No speech detected in the recording.", ""
update_transcript(_current_session_id, raw)
_labelled_transcript = clean_and_label_transcript(raw)
return "Transcript ready β Click 'Generate Notes' to proceed.", _labelled_transcript
def upload_document(file):
"""Analyse an uploaded medical document with Gemma 4 vision."""
global _document_analysis
if file is None:
_document_analysis = ""
return "_No document uploaded._"
try:
result = analyze_medical_document(file.name)
_document_analysis = result
return result
except Exception as e:
_document_analysis = ""
return f"_Document analysis failed: {e}_"
def generate_notes():
"""RAG retrieval β cloud agents β save to DB."""
if not _labelled_transcript:
return "No transcript available.", "No transcript available.", "_No symptoms._", "_No ICD codes._", "_No drug info._", "", ""
# 1. Extract symptoms
symptoms = extract_symptoms(_labelled_transcript)
symptoms_md = format_symptoms_for_display(symptoms)
# 2. RAG retrieval
chief = symptoms.get("chief_complaint", "")
sym_list = symptoms.get("symptoms", [])
meds_list = symptoms.get("medications_mentioned", [])
rag_query = f"{chief} {' '.join(sym_list)}".strip() or _labelled_transcript[:300]
icd_codes = retrieve_icd_codes(rag_query, n=5)
drug_info = retrieve_drug_info(meds_list, n=3) if meds_list else []
doc_section = f"\nUploaded Medical Document (lab result / prescription / report):\n{_document_analysis}\n" if _document_analysis else ""
rag_context = "\n".join(filter(None, [
format_icd_context(icd_codes),
format_drug_context(drug_info),
doc_section,
]))
# 3. Cloud agents
try:
soap = generate_soap_note(_labelled_transcript, rag_context=rag_context)
except Exception as e:
soap = f"_SOAP note generation failed: {e}_"
try:
summary_en = generate_patient_summary(_labelled_transcript)
except Exception as e:
summary_en = f"_Summary generation failed: {e}_"
# 4. Persist
if _current_session_id:
save_note(_current_session_id, soap, summary_en, summary_twi="")
save_symptoms(_current_session_id, symptoms)
close_session(_current_session_id)
return soap, summary_en, symptoms_md, _format_icd_panel(icd_codes), _format_drug_panel(drug_info), soap, summary_en
# ββ Tab 2: Patient Records ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_patient_records(patient_choice):
if not patient_choice:
return "Select a patient.", "", "", ""
pid = _parse_patient_choice(patient_choice)
patient = get_patient(pid)
if not patient:
return "Patient not found.", "", "", ""
sessions = get_sessions_for_patient(pid)
if not sessions:
return f"No sessions found for {patient['name']}.", "", "", ""
latest = sessions[0]
sid = latest["id"]
note = get_note_for_session(sid)
symptoms = get_symptoms_for_session(sid)
session_info = (
f"**Patient:** {patient['name']} | **DOB:** {patient.get('dob', 'N/A')} | "
f"**Gender:** {patient.get('gender', 'N/A')}\n\n"
f"**Session:** {latest['date']} | **Doctor:** {latest.get('doctor', 'N/A')}"
)
soap = note["soap_note"] if note else "_No SOAP note found._"
summary = note["summary_en"] if note else "_No summary found._"
symptoms_md = format_symptoms_for_display(symptoms)
return session_info, soap, summary, symptoms_md
# ββ CSS βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CSS = """
body, .gradio-container { font-family: 'Segoe UI', system-ui, sans-serif; }
#header-banner {
background: linear-gradient(135deg, #1a6eb5, #0d4f8a);
color: white;
padding: 20px 28px;
border-radius: 12px;
margin-bottom: 20px;
}
#header-banner h1 { margin: 0; font-size: 1.9rem; font-weight: 700; letter-spacing: -0.5px; }
#header-banner p { margin: 5px 0 0; opacity: 0.85; font-size: 0.95rem; }
.gr-markdown, .svelte-1ed2p3z, [data-testid="markdown"] {
background: transparent !important;
}
.note-card {
border: 1px solid #2d4a6e;
border-radius: 8px;
padding: 16px 20px !important;
min-height: 200px;
font-size: 0.92rem;
line-height: 1.7;
}
.note-card h1, .note-card h2, .note-card h3 {
color: #4a9eff;
margin-top: 12px;
font-size: 1rem;
}
.note-card strong { color: #7ec8ff; }
.note-card p { margin: 6px 0; }
.note-card ul, .note-card ol { padding-left: 20px; margin: 4px 0; }
.status-bar p { font-weight: 600; color: #4a9eff; font-size: 1rem; }
.rag-content {
border-left: 3px solid #1a6eb5;
padding: 10px 14px;
border-radius: 0 6px 6px 0;
font-size: 0.9rem;
}
.gr-accordion .label-wrap { font-weight: 600 !important; }
"""
# ββ Layout ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Blocks(title="Hospital Copilot", css=CSS) as demo:
gr.HTML("""
<div id="header-banner">
<h1>π₯ MediScribe AI</h1>
<p>AI-powered medical documentation Β· Gemma 4 Β· RAG-grounded Β· Ghana</p>
</div>
""")
with gr.Tabs():
# ββ Tab 1: Live Consultation ββββββββββββββββββββββββββββββββββββββ
with gr.Tab("ποΈ Live Consultation"):
with gr.Row(equal_height=False):
# Left column β patient panel
with gr.Column(scale=1, min_width=280):
with gr.Group():
gr.Markdown("#### π€ Select Patient")
patient_dd = gr.Dropdown(label="Patient", choices=_patient_choices(), interactive=True)
doctor_name = gr.Textbox(label="Doctor", placeholder="Dr. Mensah")
with gr.Accordion("β Register New Patient", open=False):
reg_name = gr.Textbox(label="Full Name", placeholder="Kofi Agyeman")
reg_dob = gr.Textbox(label="Date of Birth", placeholder="1985-03-15")
reg_gender = gr.Radio(["Male", "Female", "Other"], label="Gender", value="Male")
reg_phone = gr.Textbox(label="Phone", placeholder="+233 24 000 0000")
reg_btn = gr.Button("Register Patient", variant="primary")
reg_status = gr.Markdown()
reg_btn.click(
register_patient,
inputs=[reg_name, reg_dob, reg_gender, reg_phone],
outputs=[patient_dd, reg_status],
)
# Right column β consultation
with gr.Column(scale=3):
status_txt = gr.Markdown("_Ready. Select a patient, then record the consultation below._", elem_classes=["status-bar"])
gr.Markdown(
"**Record the consultation** β click the mic to start, click stop when done. "
"The transcript will appear automatically."
)
mic_input = gr.Audio(
sources=["microphone"],
type="filepath",
label="Consultation Recording",
)
live_transcript = gr.Textbox(
label="Transcript (cleaned & speaker-labelled)",
lines=8, max_lines=16,
interactive=False,
placeholder="Record the consultation above. The transcript will appear here after you stop recording.",
)
with gr.Accordion("π©Ί Extracted Symptoms", open=False):
symptoms_live = gr.Markdown("_Will populate after Generate Notes._")
gr.Markdown("---")
with gr.Accordion("π Upload Medical Document (Lab Result / Prescription / Report)", open=False):
gr.Markdown(
"_Optional β upload a photo or PDF of a lab result, prescription, or any medical document. "
"Gemma 4 will read it and include the findings in the SOAP note automatically._"
)
with gr.Row():
doc_upload = gr.File(
label="Upload document",
file_types=[".jpg", ".jpeg", ".png", ".webp", ".pdf"],
scale=1,
)
doc_analyse_btn = gr.Button("π Analyse Document", variant="secondary", scale=0)
doc_result = gr.Markdown("_No document uploaded._")
doc_analyse_btn.click(upload_document, inputs=[doc_upload], outputs=[doc_result])
generate_btn = gr.Button("β‘ Generate Notes from Transcript", variant="primary", size="lg")
with gr.Row():
with gr.Accordion("π·οΈ ICD-10 Suggestions", open=True):
icd_panel = gr.Markdown("_Click Generate Notes to see suggestions._")
with gr.Accordion("π Drug Reference", open=True):
drug_panel = gr.Markdown("_Click Generate Notes to see drug info._")
gr.Markdown("### π Generated Notes")
with gr.Row():
with gr.Column():
gr.Markdown("#### ποΈ SOAP Note")
soap_out = gr.Markdown(
"_SOAP note will appear here after generating._",
elem_classes=["note-card"],
)
with gr.Accordion("βοΈ Edit SOAP Note", open=False):
soap_edit = gr.Textbox(lines=18, interactive=True, show_label=False)
with gr.Column():
gr.Markdown("#### π Patient Summary")
summary_en_out = gr.Markdown(
"_Patient summary will appear here after generating._",
elem_classes=["note-card"],
)
with gr.Accordion("βοΈ Edit Summary", open=False):
summary_edit = gr.Textbox(lines=10, interactive=True, show_label=False)
mic_input.stop_recording(
transcribe_recording,
inputs=[patient_dd, doctor_name, mic_input],
outputs=[status_txt, live_transcript],
)
generate_btn.click(
generate_notes,
outputs=[soap_out, summary_en_out, symptoms_live, icd_panel, drug_panel, soap_edit, summary_edit],
)
# ββ Tab 2: Patient Records ββββββββββββββββββββββββββββββββββββββββ
with gr.Tab("π Patient Records"):
with gr.Row():
records_patient_dd = gr.Dropdown(
label="Select Patient", choices=_patient_choices(), interactive=True, scale=3,
)
load_btn = gr.Button("Load Records", variant="primary", scale=1)
session_info_md = gr.Markdown()
with gr.Row():
with gr.Column():
gr.Markdown("#### ποΈ SOAP Note")
rec_soap = gr.Markdown("_Load a patient to see their SOAP note._", elem_classes=["note-card"])
with gr.Column():
gr.Markdown("#### π Patient Summary")
rec_summary = gr.Markdown("_Load a patient to see their summary._", elem_classes=["note-card"])
with gr.Accordion("π©Ί Extracted Symptoms", open=False):
rec_symptoms = gr.Markdown()
load_btn.click(
load_patient_records,
inputs=[records_patient_dd],
outputs=[session_info_md, rec_soap, rec_summary, rec_symptoms],
)
reg_btn.click(
lambda: gr.update(choices=_patient_choices()),
outputs=[records_patient_dd],
)
# ββ Tab 3: About ββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Tab("βΉοΈ About"):
gr.Markdown("""
## MediScribe AI β Gemma 4 for Good
**Reducing doctor burnout. Improving care quality. Built for Ghana.**
### How it works
1. **Live Transcription** β Record the consultation via your browser mic. faster-whisper transcribes on CPU.
2. **Transcript Repair** β Gemma 4 fixes ASR errors and labels each turn as Doctor or Patient.
3. **Symptom Extraction** β Gemma 4 function calling extracts structured clinical JSON.
4. **RAG Retrieval** β sentence-transformers + ChromaDB matches ICD-10 codes and drug dosages.
5. **SOAP Note Generation** β Gemma 4 (reasoning mode) writes a grounded, accurate medical note.
6. **Patient Summary** β plain-language summary the patient can take home.
7. **Structured Records** β everything saved to local SQLite.
### RAG Knowledge Base
| Collection | Entries | Source |
|---|---|---|
| ICD-10 codes | 90+ | Ghana-relevant + general conditions |
| Essential medicines | 40+ | WHO Essential Medicines List |
### Technology Stack
| Component | Model | Where |
|---|---|---|
| Speech-to-Text | faster-whisper (small) | CPU |
| Symptom Extraction | Gemma 4 26B β function calling | Google AI Studio API |
| Embeddings | all-MiniLM-L6-v2 | CPU |
| Vector Store | ChromaDB | Local disk |
| SOAP / Summary | Gemma 4 26B-IT β reasoning mode | Google AI Studio API |
| Storage | SQLite | Local |
| UI | Gradio | Browser |
""")
if __name__ == "__main__":
demo.launch()
|