File size: 22,949 Bytes
e913cc6 a541119 e913cc6 fa383c9 e913cc6 c83a7f9 e913cc6 e077aab b65d207 e913cc6 c83a7f9 e913cc6 fa383c9 e913cc6 b65d207 e913cc6 d80b965 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 c83a7f9 6732304 e913cc6 6732304 c83a7f9 e913cc6 6732304 c83a7f9 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 e913cc6 6732304 339f7b7 6732304 339f7b7 6732304 e913cc6 339f7b7 6732304 e913cc6 a541119 e913cc6 e077aab ac8790c e077aab e913cc6 e077aab 97207fb e077aab 97207fb e077aab e913cc6 e077aab e913cc6 e077aab 921e3e5 e077aab c83a7f9 e077aab e913cc6 e077aab e913cc6 e077aab e913cc6 e077aab e913cc6 e077aab 921e3e5 e077aab e913cc6 cee5d45 |
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 |
import json
import os
import re
import tempfile
import base64
from datetime import datetime
import streamlit as st
from reportlab.lib.pagesizes import A4
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.enums import TA_LEFT, TA_CENTER, TA_RIGHT
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Table, TableStyle, Image
from reportlab.lib import colors
from reportlab.lib.units import inch, cm
from reportlab.platypus import PageBreak, KeepTogether
import requests
from model import orchestrator_chat
from utils import format_conversation_history
from session_state import get_full_history
# Function to fetch current date and time from an API
def fetch_current_datetime():
"""
Fetch the current date and time from a public API.
Returns a dictionary with date, time, and formatted timestamp.
If the API call fails, falls back to system time.
"""
try:
# Call the WorldTimeAPI to get current date and time
response = requests.get("http://worldtimeapi.org/api/ip")
if response.status_code == 200:
data = response.json()
datetime_str = data.get('datetime')
if datetime_str:
# Parse the datetime string
dt = datetime.fromisoformat(datetime_str.replace('Z', '+00:00'))
# Format the date and time
formatted_date = dt.strftime("%Y-%m-%d")
formatted_time = dt.strftime("%H:%M:%S")
full_timestamp = dt.strftime("%Y-%m-%d %H:%M:%S")
return {
"date": formatted_date,
"time": formatted_time,
"timestamp": full_timestamp
}
# Fallback to system time if API fails
print("API call failed, using system time instead")
now = datetime.now()
return {
"date": now.strftime("%Y-%m-%d"),
"time": now.strftime("%H:%M:%S"),
"timestamp": now.strftime("%Y-%m-%d %H:%M:%S")
}
except Exception as e:
# Handle any exceptions and fall back to system time
print(f"Error fetching time from API: {str(e)}")
now = datetime.now()
return {
"date": now.strftime("%Y-%m-%d"),
"time": now.strftime("%H:%M:%S"),
"timestamp": now.strftime("%Y-%m-%d %H:%M:%S")
}
# Function to encode images to base64 (similar to app.py)
def get_image_base64(image_path):
try:
if os.path.exists(image_path):
with open(image_path, "rb") as img_file:
return base64.b64encode(img_file.read()).decode()
else:
print(f"Image not found: {image_path}")
return None
except Exception as e:
print(f"Error loading image: {e}")
return None
# Function to get reportlab Image object or None
def get_reportlab_image(image_path, width=1.5*inch, height=1.0*inch):
try:
if os.path.exists(image_path):
return Image(image_path, width=width, height=height)
else:
# Try to find it in alternate locations
alt_paths = [
f"assets/{os.path.basename(image_path)}",
f"assets/Logo/{os.path.basename(image_path)}",
image_path.replace("src/assets", "assets")
]
for path in alt_paths:
if os.path.exists(path):
return Image(path, width=width, height=height)
print(f"Image not found: {image_path}")
return None
except Exception as e:
print(f"Error creating image: {str(e)}")
return None
def extract_medical_json(conversation_text: str) -> dict:
"""
Extract medical report data from conversation text into structured JSON.
Uses the existing orchestrator_chat model.
"""
system_prompt = """
You are an expert medical report generator. Extract ALL info from the patient-assistant conversation into this JSON schema:
{
"patient": {"name":"","age":"","gender":""},
"visit_date":"YYYY-MM-DD",
"chief_complaint":"",
"history_of_present_illness":"",
"past_medical_history":"",
"medications":"",
"allergies":"",
"examination":"",
"diagnosis":"",
"recommendations":"",
"reasoning":"",
"sources":""
}
Do NOT invent any data. Return ONLY the JSON object.
"""
# Create a fake history with the system prompt as a system message
history = [
{"role": "system", "content": system_prompt}
]
# Use our existing orchestrator_chat function with valid parameters
result, _, _, _ = orchestrator_chat(
history=history,
query=conversation_text,
use_rag=True,
is_follow_up=False
)
# Extract JSON from response
try:
# Find JSON object in the response
json_match = re.search(r'({[\s\S]*})', result)
if json_match:
json_str = json_match.group(1)
return json.loads(json_str)
else:
# If no clear JSON format found, try to parse the whole response
return json.loads(result)
except json.JSONDecodeError:
# Fallback with basic structure
st.error("Failed to parse report data")
return {
"patient": {"name":"", "age":"", "gender":""},
"visit_date": datetime.now().strftime("%Y-%m-%d"),
"chief_complaint": "Error generating report"
}
def build_medical_report(data: dict) -> bytes:
"""
Generates a PDF from the extracted JSON and returns PDF bytes.
Modern dark theme version with minimal design.
"""
# Create a temporary file for the PDF
fd, temp_path = tempfile.mkstemp(suffix='.pdf')
os.close(fd)
# Set up the document with margins
doc = SimpleDocTemplate(
temp_path,
pagesize=A4,
rightMargin=1.5*cm,
leftMargin=1.5*cm,
topMargin=1.5*cm,
bottomMargin=2*cm
)
# Custom colors for dark theme
background_color = colors.black
text_color = colors.white
accent_color = colors.purple
secondary_color = colors.lavender
highlight_color = colors.mediumorchid
# Set up styles with more professional fonts
styles = getSampleStyleSheet()
# Title style with gradient effect
styles.add(ParagraphStyle(
name='ReportTitle',
fontName='Helvetica-Bold',
fontSize=20,
leading=24,
alignment=TA_CENTER,
spaceAfter=0.3*inch,
textColor=highlight_color
))
# Section heading style
styles.add(ParagraphStyle(
name='SectionHeading',
fontName='Helvetica-Bold',
fontSize=14,
leading=16,
spaceAfter=0.1*inch,
alignment=TA_LEFT,
textColor=accent_color
))
# Normal text style
styles.add(ParagraphStyle(
name='NormalText',
fontName='Helvetica',
fontSize=10,
leading=12,
spaceAfter=0.1*inch,
alignment=TA_LEFT,
textColor=colors.white # Ensure this is explicitly white
))
# Company info style
styles.add(ParagraphStyle(
name='CompanyInfo',
fontName='Helvetica',
fontSize=9,
leading=11,
alignment=TA_RIGHT,
textColor=secondary_color
))
# Setup canvas callback to draw background
def add_page_background(canvas, doc):
canvas.saveState()
canvas.setFillColor(background_color)
canvas.rect(0, 0, doc.pagesize[0], doc.pagesize[1], fill=1)
canvas.restoreState()
# Initialize elements list
elems = []
# Add logo and company header
logo_path = "src/assets/logo.png"
# Get logo image
logo_img = get_reportlab_image(logo_path, width=1.0*inch, height=1.0*inch)
# Company info
company_info = Paragraph(
"""
<b><font color="#E0B0FF">Daease</font></b><br/>
Website: <font color="#E0B0FF">http://daease.com/</font><br/>
Email: <font color="#E0B0FF">daease.main@gmail.com</font>
""",
styles['CompanyInfo']
)
# Add header with logo or text-only fallback
if logo_img:
header_table = Table([[logo_img, company_info]], colWidths=[doc.width/2.0]*2)
header_table.setStyle(TableStyle([
('VALIGN', (0, 0), (-1, -1), 'TOP'),
('ALIGN', (0, 0), (0, 0), 'LEFT'),
('ALIGN', (1, 0), (1, 0), 'RIGHT'),
('BOTTOMPADDING', (0, 0), (-1, -1), 10),
('BACKGROUND', (0, 0), (-1, -1), background_color),
]))
elems.append(header_table)
else:
company_header = Paragraph(
"""
<b><font color="#E0B0FF" size="14">Daease</font></b><br/>
Website: <font color="#E0B0FF">http://daease.com/</font><br/>
Email: <font color="#E0B0FF">daease.main@gmail.com</font>
""",
styles['CompanyInfo']
)
elems.append(company_header)
elems.append(Spacer(1, 0.3*inch))
# Add title with subtle gradient-like effect
title = Paragraph(
'<font color="#E0B0FF">Daease</font> '
'<font color="#D8BFD8">Medical</font> '
'<font color="#DA70D6">Consultation</font> '
'<font color="#BA55D3">Report</font>',
styles['ReportTitle']
)
elems.append(title)
elems.append(Spacer(1, 0.2*inch))
# Add a horizontal separator line
separator = Table([['']], colWidths=[doc.width], rowHeights=[1])
separator.setStyle(TableStyle([
('LINEABOVE', (0, 0), (-1, -1), 1, accent_color),
('BACKGROUND', (0, 0), (-1, -1), background_color),
]))
elems.append(separator)
elems.append(Spacer(1, 0.3*inch))
# --- TABLE 1: Patient Information ---
patient = data.get('patient', {})
# Get report generation timestamp
generation_time = data.get('generation_timestamp', datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
# Create a cleaner patient info table with proper Paragraph objects
patient_data = [
[Paragraph('<font color="#BA55D3"><b>Patient Information</b></font>', styles['SectionHeading']), ''],
[Paragraph('Name:', styles['NormalText']), Paragraph(f'{patient.get("name", "β")}', styles['NormalText'])],
[Paragraph('Age:', styles['NormalText']), Paragraph(f'{patient.get("age", "β")}', styles['NormalText'])],
[Paragraph('Gender:', styles['NormalText']), Paragraph(f'{patient.get("gender", "β")}', styles['NormalText'])],
[Paragraph('Visit Date:', styles['NormalText']), Paragraph(f'{data.get("visit_date", datetime.now().strftime("%Y-%m-%d"))}', styles['NormalText'])],
[Paragraph('Report Generated:', styles['NormalText']), Paragraph(f'{generation_time}', styles['NormalText'])]
]
patient_table = Table(
patient_data,
colWidths=[doc.width * 0.3, doc.width * 0.7],
rowHeights=[0.4*inch, 0.25*inch, 0.25*inch, 0.25*inch, 0.25*inch, 0.25*inch]
)
patient_table.setStyle(TableStyle([
# Header styling
('SPAN', (0, 0), (1, 0)), # Span the header cell
('ALIGN', (0, 0), (0, 0), 'CENTER'),
# Label column styling
('ALIGN', (0, 1), (0, -1), 'RIGHT'),
('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),
('RIGHTPADDING', (0, 1), (0, -1), 12),
# Cell styling
('BACKGROUND', (0, 0), (-1, -1), background_color),
('TEXTCOLOR', (1, 1), (1, -1), text_color),
# Borders
('GRID', (0, 1), (1, -1), 0.5, secondary_color),
('BOX', (0, 1), (1, -1), 1, accent_color),
]))
elems.append(patient_table)
elems.append(Spacer(1, 0.4*inch))
# --- TABLE 2: Medical Information (All in one table) ---
# Collect all medical data
medical_sections = [
("Chief Complaint", data.get('chief_complaint')),
("History of Present Illness", data.get('history_of_present_illness')),
("Past Medical History", data.get('past_medical_history')),
("Medications", data.get('medications')),
("Allergies", data.get('allergies')),
("Examination Findings", data.get('examination')),
("Diagnosis", data.get('diagnosis')),
("Recommendations", data.get('recommendations')),
("Reasoning", data.get('reasoning')),
("Sources", data.get('sources'))
]
# Create table data
elems.append(Paragraph('<font color="#BA55D3"><b>Medical Information</b></font>', styles['SectionHeading']))
elems.append(Spacer(1, 0.1*inch))
# Create medical info rows
for title, content in medical_sections:
if not content or str(content).strip() == '':
content = 'β'
# Format content as paragraphs
if isinstance(content, list):
content = '\n'.join(map(str, content))
elif content is not None and not isinstance(content, str):
content = str(content)
# Create styled paragraph for content with explicit white text color
styled_content = Paragraph(content, styles['NormalText'])
# Add section
section_data = [
[Paragraph(f'<b>{title}</b>', styles['NormalText']), styled_content]
]
section_table = Table(
section_data,
colWidths=[doc.width * 0.25, doc.width * 0.75],
rowHeights=None # Auto height
)
section_table.setStyle(TableStyle([
# Cell styling
('VALIGN', (0, 0), (0, 0), 'TOP'),
('ALIGN', (0, 0), (0, 0), 'RIGHT'),
('RIGHTPADDING', (0, 0), (0, 0), 12),
('TOPPADDING', (0, 0), (1, 0), 8),
('BOTTOMPADDING', (0, 0), (1, 0), 8),
# Background
('BACKGROUND', (0, 0), (-1, -1), background_color),
# Bottom border only
('LINEBELOW', (0, 0), (1, 0), 0.5, secondary_color),
]))
elems.append(section_table)
# Add AI signature section
elems.append(Spacer(1, 0.4*inch))
# Add a horizontal line before signature
sig_separator = Table([['']], colWidths=[doc.width], rowHeights=[1])
sig_separator.setStyle(TableStyle([
('LINEABOVE', (0, 0), (-1, -1), 0.5, accent_color),
('BACKGROUND', (0, 0), (-1, -1), background_color),
]))
elems.append(sig_separator)
elems.append(Spacer(1, 0.2*inch))
# Signature text
signature_text = Paragraph('<font color="#D8BFD8"><i>Generated by</i></font>', styles['NormalText'])
ai_name = Paragraph('<font color="#BA55D3"><b>Daease AI Medical Assistant</b></font>', styles['NormalText'])
# Use the logo as signature if available
signature_img = get_reportlab_image("src/assets/AI Generated Report.png", width=1.0*inch, height=1.0*inch)
if signature_img:
sig_table = Table(
[[signature_text, ''],
[signature_img, ''],
[ai_name, '']],
colWidths=[doc.width * 0.3, doc.width * 0.7],
rowHeights=[None, None, None]
)
sig_table.setStyle(TableStyle([
('ALIGN', (0, 0), (0, -1), 'CENTER'),
('VALIGN', (0, 0), (0, -1), 'MIDDLE'),
('BACKGROUND', (0, 0), (-1, -1), background_color),
]))
elems.append(sig_table)
else:
sig_text = Paragraph(
'<font color="#D8BFD8"><i>Generated by</i></font><br/>'
'<font color="#BA55D3"><b>Daease AI Medical Assistant</b></font>',
styles['NormalText']
)
elems.append(sig_text)
# Add disclaimer with subtle styling
elems.append(Spacer(1, 0.3*inch))
disclaimer = Paragraph(
'<font color="#A9A9A9"><i>Disclaimer: This report is generated by AI for informational purposes only. '
'It should not replace professional medical advice, diagnosis, or treatment. '
'Always consult with a qualified healthcare provider for medical concerns.</i></font>',
ParagraphStyle(
name='Disclaimer',
fontName='Helvetica-Oblique',
fontSize=8,
alignment=TA_CENTER
)
)
elems.append(disclaimer)
# Build the PDF document with background
doc.build(elems, onFirstPage=add_page_background, onLaterPages=add_page_background)
# Read PDF bytes
with open(temp_path, 'rb') as file:
pdf_bytes = file.read()
# Clean up the temporary file
os.unlink(temp_path)
return pdf_bytes
def generate_and_download_report():
"""
Generate a medical report from the conversation history.
Shows a form for entering patient info and then allows downloading the report.
"""
# Skip report generation if we're in the middle of a conversation
if st.session_state.get('processing', False):
return
# Step 1: Collect patient info
if st.session_state.report_step == 1:
st.text_input("Patient Name", key="patient_name",
value=st.session_state.patient_info.get("name", ""))
st.text_input("Age", key="patient_age",
value=st.session_state.patient_info.get("age", ""))
# Get gender with fallback to "Male" if empty or not in options
gender = st.session_state.patient_info.get("gender", "Male")
if gender not in ["Male", "Female", "Other"]:
gender = "Male"
st.selectbox("Gender", ["Male", "Female", "Other"], key="patient_gender",
index=["Male", "Female", "Other"].index(gender))
if st.button("Generate Report"):
# Save patient info to session state
st.session_state.patient_info = {
"name": st.session_state.patient_name,
"age": st.session_state.patient_age,
"gender": st.session_state.patient_gender
}
st.session_state.report_step = 2
st.rerun()
# Step 2: Generate and display report
elif st.session_state.report_step == 2:
with st.spinner("Generating report..."):
try:
# Get full conversation history from database
full_history = get_full_history()
# Format the conversation history for the report
formatted_conversation = format_conversation_history(
full_history,
st.session_state.patient_info
)
# Extract structured data from the conversation
medical_data = extract_medical_json(formatted_conversation)
# Update with patient info from the form
medical_data["patient"].update(st.session_state.patient_info)
# Fetch current date and time from the API
datetime_data = fetch_current_datetime()
# Set the visit date to today's date from API
medical_data["visit_date"] = datetime_data["date"]
# Set the report generation timestamp
medical_data["generation_timestamp"] = datetime_data["timestamp"]
# Generate PDF
pdf_data = build_medical_report(medical_data)
# Store PDF data in session state
st.session_state.pdf_data = pdf_data
# Create download button
st.download_button(
label="Download Report",
data=pdf_data,
file_name=f"medical_report_{st.session_state.patient_info['name'].replace(' ', '_')}.pdf",
mime="application/pdf",
use_container_width=True
)
# Show email option
if st.button("Email Report", use_container_width=True):
st.session_state.show_email_form = True
# Show email form if requested
if st.session_state.show_email_form:
show_email_form()
# Option to start over
if st.button("New Report", use_container_width=True):
# Reset report step
st.session_state.report_step = 1
# Clear PDF data
if 'pdf_data' in st.session_state:
del st.session_state.pdf_data
# Reset patient info
st.session_state.patient_info = {"name": "", "age": "", "gender": ""}
# Hide email form if shown
st.session_state.show_email_form = False
# Force refresh
st.rerun()
except Exception as e:
st.error(f"Error generating report: {str(e)}")
st.button("Try Again", on_click=lambda: setattr(st.session_state, "report_step", 1))
def show_email_form():
"""Display the email form for sending reports"""
from sendgrid_service import SendGridService
st.subheader("Send Report via Email")
# Check SendGrid configuration
sendgrid_api_key = os.getenv('SENDGRID_API_KEY')
if not sendgrid_api_key:
st.warning("Email service not configured. Please contact administrator.")
# Email form
email = st.text_input("Recipient Email Address:")
# Email send button
if st.button("Send"):
if not email:
st.error("Please enter an email address.")
else:
# Validate email
sendgrid = SendGridService()
if not sendgrid.validate_email(email):
st.error("Please enter a valid email address.")
else:
# Send email
with st.spinner("Sending email... This may take a few seconds."):
success, message = sendgrid.send_report(
email,
st.session_state.pdf_data,
st.session_state.patient_info["name"]
)
if success:
st.success(message)
# Hide the form after successful send
st.session_state.show_email_form = False
st.rerun()
else:
st.error(message)
# Cancel button to hide email form
if st.button("Cancel"):
st.session_state.show_email_form = False
st.rerun() |