Spaces:
Sleeping
Sleeping
File size: 39,523 Bytes
ed30e83 |
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 |
import os
import threading
import time
import subprocess
import gradio as gr
import json
import random
from datetime import datetime
import uuid
import requests
from requests.exceptions import ConnectionError, RequestException
from dotenv import load_dotenv
from supabase import create_client, Client
from ollama import chat
from pydantic import BaseModel
# Ollama setup for Docker spaces
print("Ollama should be running via Docker startup...")
time.sleep(5) # Give Ollama time to start
# Test Ollama connection
try:
# Simple test to see if Ollama is available
result = subprocess.run("ollama list", shell=True, capture_output=True, text=True)
print("Ollama status:", result.stdout)
print("Model should be available via Docker startup...")
except Exception as e:
print(f"Ollama check failed: {e}")
model_name = "llm_hub/child_trauma_gemma"
# Load environment variables
load_dotenv()
# Pydantic model for structured report generation
class RiskAssessment(BaseModel):
parent_observations: str
ai_analysis: str
severity_score: int
risk_indicators: list[str]
cultural_context: str
class EnhancedTraumaAssessmentApp:
def __init__(self):
self.report_data = {
"child_info": {
"name": "",
"age": 0,
"gender": "",
"location": ""
},
"assessment_data": {
"parent_observations": "",
"ai_analysis": "",
"severity_score": 0,
"risk_indicators": [],
"cultural_context": ""
},
"media_attachments": {
"drawings": [],
"audio_recordings": [],
"photos": []
},
"mobile_app_id": str(uuid.uuid4()),
"session_start": datetime.now().isoformat(),
"conversation_history": []
}
self.is_onboarded = False
self.submitted_report_id = None
self.polling_active = False
self.ollama_conversation = [] # Track conversation for the model
# Initialize Supabase client
self.supabase_url = os.getenv("NEXT_PUBLIC_SUPABASE_URL")
self.supabase_key = os.getenv("NEXT_PUBLIC_SUPABASE_ANON_KEY")
if self.supabase_url and self.supabase_key:
self.supabase: Client = create_client(self.supabase_url, self.supabase_key)
else:
self.supabase = None
print("β οΈ Supabase credentials not found in .env file")
def complete_onboarding(self, child_name, child_age, child_gender, child_location):
"""Complete the onboarding process and store child info"""
if not all([child_name, child_age, child_gender, child_location]):
return False, "Please fill in all required information about your child."
self.report_data["child_info"] = {
"name": child_name,
"age": int(child_age),
"gender": child_gender,
"location": child_location
}
self.is_onboarded = True
# Generate cultural context based on location
self.report_data["assessment_data"]["cultural_context"] = self.generate_cultural_context(child_location)
return True, f"Welcome! I'm ready to help you with {child_name}'s assessment."
def generate_cultural_context(self, location):
"""Generate appropriate cultural context based on location"""
location_lower = location.lower()
if any(keyword in location_lower for keyword in ['gaza', 'palestine', 'west bank']):
return "Assessment conducted considering ongoing conflict exposure and displacement trauma"
elif any(keyword in location_lower for keyword in ['ukraine', 'kyiv', 'kharkiv', 'mariupol']):
return "Assessment considering war-related trauma and displacement from conflict zones"
elif any(keyword in location_lower for keyword in ['syria', 'lebanon', 'jordan']):
return "Assessment considering refugee experience and cultural adaptation challenges"
else:
return f"Assessment conducted with consideration for local cultural context in {location}"
def add_message(self, history, message):
"""Add user message with multimodal support"""
if not self.is_onboarded:
return history, gr.MultimodalTextbox(value=None, interactive=False)
# Handle file uploads
if message.get("files"):
for file in message["files"]:
file_type = self.classify_file_type(file)
history.append({
"role": "user",
"content": {"path": file}
})
# Store in report data
if file_type == "image":
# Determine if it's a drawing or photo based on content analysis
attachment_type = "drawings" if "draw" in file.lower() else "photos"
self.report_data["media_attachments"][attachment_type].append({
"path": file,
"timestamp": datetime.now().isoformat()
})
print(f"Image file detected: {file}")
# Handle text message
if message.get("text"):
history.append({
"role": "user",
"content": message["text"]
})
# Add to conversation history for model
self.ollama_conversation.append({
"role": "user",
"content": message["text"]
})
# Add to parent observations
current_obs = self.report_data["assessment_data"]["parent_observations"]
self.report_data["assessment_data"]["parent_observations"] = (
current_obs + " " + message["text"] if current_obs else message["text"]
)
# Store conversation history
self.report_data["conversation_history"] = history
return history, gr.MultimodalTextbox(value=None, interactive=False)
def classify_file_type(self, file_path):
"""Classify uploaded file type"""
if file_path.lower().endswith(('.jpg', '.jpeg', '.png', '.gif', '.bmp')):
return "image"
else:
return "other"
def bot_response(self, history):
"""Generate bot response using Ollama model"""
if not history or not self.is_onboarded:
return
# Get the last user message
last_message = ""
has_image = False
image_path = None
for msg in reversed(history):
if msg["role"] == "user":
if isinstance(msg["content"], str):
last_message = msg["content"]
break
elif isinstance(msg["content"], dict) and "path" in msg["content"]:
has_image = True
image_path = msg["content"]["path"]
break
# Prepare message for Ollama
if has_image and image_path:
# Handle image input
try:
response = chat(
model=model_name,
messages=[{
'role': 'user',
'content': f'I am sharing an image related to my child {self.report_data["child_info"]["name"]}\'s situation. Please analyze this image in the context of trauma assessment and respond empathetically.',
'images': [image_path],
}]
)
response_text = response.message.content
except Exception as e:
response_text = f"I can see you've shared an image. Thank you for providing this visual information about {self.report_data['child_info']['name']}. Visual expressions can tell us a lot about how children process their experiences. Could you tell me more about when this was created or what you'd like me to know about it?"
print(f"Ollama image error: {e}")
else:
# Handle text conversation
try:
response = chat(
model=model_name,
messages=self.ollama_conversation
)
response_text = response.message.content
except Exception as e:
response_text = f"Thank you for sharing that with me. I understand this is a difficult time for you and {self.report_data['child_info']['name']}. Could you tell me more about what you're observing?"
print(f"Ollama text error: {e}")
# Add assistant response to conversation history
self.ollama_conversation.append({
"role": "assistant",
"content": response_text
})
# Start bot response
history.append({"role": "assistant", "content": ""})
# Stream the response
for character in response_text:
history[-1]["content"] += character
time.sleep(0.02)
yield history
def generate_comprehensive_report(self, progress_callback=None):
"""Generate comprehensive assessment report using Ollama structured output"""
if not self.is_onboarded:
return "Please complete the initial assessment form first."
if not self.ollama_conversation:
return "Please have a conversation first before generating a report."
if progress_callback:
progress_callback("π€ Analyzing conversation with AI...")
try:
# Generate structured assessment using Ollama
assessment_prompt = f"""Based on our conversation about {self.report_data['child_info']['name']}, a {self.report_data['child_info']['age']}-year-old {self.report_data['child_info']['gender']} from {self.report_data['child_info']['location']}, generate a comprehensive trauma risk assessment report.
Include:
- Parent observations summary from our conversation
- AI analysis of trauma indicators
- Severity score (1-10 scale)
- List of risk indicators identified
- Cultural context considering the child's location and circumstances
Consider the conversation history and any cultural factors relevant to {self.report_data['child_info']['location']}."""
if progress_callback:
progress_callback("π§ AI is generating structured assessment...")
response = chat(
model=model_name,
messages=[{'role': 'user', 'content': assessment_prompt}],
format=RiskAssessment.model_json_schema(),
options={'temperature': 0}
)
if progress_callback:
progress_callback("π Processing assessment data...")
# Parse structured response
assessment = RiskAssessment.model_validate_json(response.message.content)
# Update report data with AI-generated assessment
self.report_data["assessment_data"]["parent_observations"] = assessment.parent_observations
self.report_data["assessment_data"]["ai_analysis"] = assessment.ai_analysis
self.report_data["assessment_data"]["severity_score"] = assessment.severity_score
self.report_data["assessment_data"]["risk_indicators"] = assessment.risk_indicators
self.report_data["assessment_data"]["cultural_context"] = assessment.cultural_context
if progress_callback:
progress_callback("π Formatting final report...")
except Exception as e:
print(f"Ollama structured output error: {e}")
if progress_callback:
progress_callback("β οΈ Using fallback assessment...")
# Fallback to basic assessment
self.report_data["assessment_data"]["severity_score"] = 6
self.report_data["assessment_data"]["risk_indicators"] = ["sleep disturbances", "behavioral changes", "anxiety"]
# Generate formatted report
child_info = self.report_data["child_info"]
assessment_data = self.report_data["assessment_data"]
media_attachments = self.report_data["media_attachments"]
severity = assessment_data["severity_score"]
risk_indicators = assessment_data["risk_indicators"]
return f"""# π COMPREHENSIVE TRAUMA ASSESSMENT REPORT
**Generated:** {datetime.now().strftime("%B %d, %Y at %H:%M")}
**Assessment ID:** {self.report_data["mobile_app_id"][:8]}
**Confidentiality Level:** Protected Health Information
**Platform:** Child Trauma Assessment AI
---
## π€ CHILD INFORMATION
**Name:** {child_info["name"]}
**Age:** {child_info["age"]} years old
**Gender:** {child_info["gender"].title()}
**Location:** {child_info["location"]}
**Assessment Date:** {datetime.now().strftime("%B %d, %Y")}
---
## π₯ PARENT OBSERVATIONS
{assessment_data["parent_observations"]}
**Session Details:**
- **Duration:** {len(self.report_data["conversation_history"])} message exchanges
- **Media Provided:** {len(media_attachments["drawings"])} drawings, {len(media_attachments["photos"])} photographs
---
## π§ AI ANALYSIS
{assessment_data["ai_analysis"]}
**Behavioral Patterns Identified:**
{chr(10).join([f"β’ {indicator}" for indicator in risk_indicators])}
---
## β οΈ SEVERITY ASSESSMENT
**Severity Score:** {severity}/10
**Risk Level:** {"π‘ Moderate Risk" if severity < 7 else "π΄ High Risk - Urgent Intervention Recommended"}
**Clinical Priority:** {"Standard referral appropriate" if severity < 7 else "Expedited professional evaluation needed"}
---
## π CULTURAL CONTEXT
{assessment_data["cultural_context"]}
This assessment considers the cultural and environmental factors specific to {child_info["location"]}, including region-specific trauma expressions, family dynamics, and community support systems.
---
## π CLINICAL RECOMMENDATIONS
**Immediate Actions:**
1. Schedule comprehensive evaluation with licensed child trauma specialist
2. Ensure stable, predictable environment for {child_info["name"]}
3. Implement safety planning and crisis contact protocols
**Therapeutic Interventions:**
1. Begin trauma-focused cognitive behavioral therapy (TF-CBT)
2. Consider family therapy to strengthen support systems
3. Monitor sleep, appetite, and behavioral patterns daily
**Cultural Considerations:**
1. Engage culturally competent mental health services
2. Incorporate traditional coping mechanisms where appropriate
3. Consider community-based support resources
**Follow-up:**
- Initial professional evaluation within 1-2 weeks
- Regular monitoring and assessment as recommended by treating clinician
---
## βοΈ IMPORTANT DISCLAIMERS
- **Preliminary Screening Tool:** This AI-generated assessment is for screening purposes only and does NOT constitute a clinical diagnosis
- **Professional Validation Required:** All findings must be validated by licensed mental health professionals
- **Emergency Protocol:** For immediate safety concerns, contact emergency services immediately
- **Clinical Judgment:** AI analysis should supplement, not replace, professional clinical assessment
**Report Generated:** {datetime.now().isoformat()}
**Next Review Recommended:** {(datetime.now()).strftime("%B %d, %Y")} (2 weeks)
"""
def push_report_to_care_bridge(self, base_url="https://care-bridge-platform-7vs1.vercel.app"):
"""Push the generated report to the Care Bridge platform."""
if not self.is_onboarded:
return False, "Please complete the initial assessment form first."
if not self.report_data["conversation_history"]:
return False, "Please have a conversation first before pushing a report."
# Prepare data in the format expected by Care Bridge API
api_data = {
"child_info": {
"age": self.report_data["child_info"]["age"],
"gender": self.report_data["child_info"]["gender"].lower(),
"location": self.report_data["child_info"]["location"]
},
"assessment_data": {
"parent_observations": self.report_data["assessment_data"]["parent_observations"],
"ai_analysis": self.report_data["assessment_data"]["ai_analysis"],
"severity_score": self.report_data["assessment_data"]["severity_score"],
"risk_indicators": self.report_data["assessment_data"]["risk_indicators"],
"cultural_context": self.report_data["assessment_data"]["cultural_context"]
},
"media_attachments": self.report_data["media_attachments"],
"mobile_app_id": self.report_data["mobile_app_id"]
}
try:
url = f"{base_url}/api/reports"
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=api_data, headers=headers, timeout=10)
if response.status_code == 201:
result = response.json()
report_id = result.get('id', 'Unknown')
# Store the report ID for polling
self.submitted_report_id = report_id
# Start polling for responses
self.start_response_polling()
return True, f"β
Report successfully pushed to Care Bridge Platform!\nπ Report ID: {report_id}\nπ Now monitoring for specialist response..."
else:
return False, f"β API Error: {response.status_code} - {response.text}"
except ConnectionError:
return False, "β Could not connect to Care Bridge Platform. Please check if the platform is running."
except requests.exceptions.Timeout:
return False, "β Request timed out. Please try again."
except RequestException as e:
return False, f"β Network error: {str(e)}"
except Exception as e:
return False, f"β Unexpected error: {str(e)}"
def start_response_polling(self):
"""Start polling for specialist responses in a background thread."""
if not self.supabase or not self.submitted_report_id:
print("β οΈ Cannot start polling: Missing Supabase connection or report ID")
return
if self.polling_active:
print("βΉοΈ Polling already active")
return # Already polling
self.polling_active = True
print(f"π Starting background polling for report ID: {self.submitted_report_id}")
polling_thread = threading.Thread(target=self._poll_for_response, daemon=True)
polling_thread.start()
def _poll_for_response(self):
"""Poll Supabase for specialist responses."""
max_polls = 120 # Poll for 10 minutes (120 * 5 seconds)
poll_count = 0
print("Starting polling for response...")
while self.polling_active and poll_count < max_polls:
try:
# Check for response in Supabase
print("Polling for response...")
response = self.supabase.table("responses").select("*").eq("report_id", self.submitted_report_id).execute()
if response.data and len(response.data) > 0:
# Response found!
specialist_response = response.data[0]
self.specialist_response = specialist_response
self.get_specialist_response()
self.polling_active = False
break
# Wait 5 seconds before next poll
time.sleep(5)
poll_count += 1
except Exception as e:
print(f"Error polling for response: {e}")
time.sleep(5)
poll_count += 1
# Stop polling after max attempts
if poll_count >= max_polls:
self.polling_active = False
def get_specialist_response(self):
"""Get the specialist response if available."""
if hasattr(self, 'specialist_response'):
response = self.specialist_response
urgency_color = {
'low': 'π’',
'medium': 'π‘',
'high': 'π ',
'critical': 'π΄'
}
urgency_emoji = urgency_color.get(response['urgency_level'], 'βͺ')
formatted_response = f"""
# π¨ββοΈ SPECIALIST RESPONSE RECEIVED
**Response Date:** {response['response_date'][:19].replace('T', ' ')}
**Specialist ID:** {response['psychologist_id']}
**Urgency Level:** {urgency_emoji} {response['urgency_level'].upper()}
---
## π PSYCHOLOGIST NOTES
{response['psychologist_notes']}
---
## π‘ RECOMMENDATIONS
"""
if isinstance(response['recommendations'], dict):
for key, value in response['recommendations'].items():
formatted_response += f"**{key.replace('_', ' ').title()}:** {value}\n\n"
else:
formatted_response += str(response['recommendations'])
return True, formatted_response
return False, "No specialist response available yet. Still monitoring..."
# Initialize enhanced app
app = EnhancedTraumaAssessmentApp()
# Enhanced CSS with onboarding styles
css = """
/* Main container styling */
.gradio-container {
max-width: 900px !important;
margin: 0 auto !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Onboarding specific styles */
.onboarding-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px 30px;
border-radius: 20px;
margin: 20px 0;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.welcome-form {
background: white;
color: #333;
padding: 30px;
border-radius: 15px;
margin: 20px 0;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.form-section {
margin: 20px 0;
text-align: left;
}
.form-section label {
font-weight: 600;
color: #2d3436;
margin-bottom: 8px;
display: block;
}
/* Header styling */
.header-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 30px 20px;
border-radius: 15px;
margin-bottom: 25px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Status indicators */
.status-success {
background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
border-left: 4px solid #00b894;
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
color: #00b894;
font-weight: 500;
}
.status-warning {
background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
border-left: 4px solid #f39c12;
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
color: #e67e22;
}
.status-info {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
border-left: 4px solid #74b9ff;
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
color: #0984e3;
}
/* Button styling */
.primary-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
border: none !important;
color: white !important;
padding: 15px 30px !important;
border-radius: 25px !important;
font-weight: 600 !important;
font-size: 16px !important;
transition: all 0.3s ease !important;
width: 100% !important;
}
.primary-button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}
/* Chat interface styling */
.chat-container {
background: white;
border-radius: 15px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.child-info-display {
background: linear-gradient(135deg, #ddd6fe 0%, #e0e7ff 100%);
border: 1px solid #c4b5fd;
padding: 15px 20px;
border-radius: 10px;
margin: 15px 0;
color: #5b21b6;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.gradio-container {
max-width: 100% !important;
margin: 0 10px !important;
}
.onboarding-container {
padding: 25px 20px;
margin: 10px 0;
}
.welcome-form {
padding: 20px;
margin: 15px 0;
}
}
"""
# Build enhanced Gradio interface with onboarding
with gr.Blocks(css=css, title="Child Trauma Assessment - Professional Support", theme=gr.themes.Soft()) as demo:
# Session state for controlling interface
onboarding_complete = gr.State(False)
# Welcome/Onboarding Interface
with gr.Column(visible=True) as onboarding_section:
gr.HTML("""
<div class="onboarding-container">
<h1>π€ Welcome to Child Trauma Assessment AI</h1>
<p>Professional-grade support for families and children in crisis</p>
<br>
<h3>Let's start by learning about your child</h3>
</div>
""")
with gr.Column(elem_classes=["welcome-form"]):
gr.HTML("<h2 style='text-align: center; color: #667eea; margin-bottom: 25px;'>π Child Information Form</h2>")
with gr.Row():
child_name = gr.Textbox(
label="Child's Name (First name only for privacy)",
placeholder="e.g., Sarah, Ahmed, Oleksandr",
elem_classes=["form-section"]
)
child_age = gr.Number(
label="Child's Age",
minimum=2,
maximum=18,
value=8,
elem_classes=["form-section"]
)
with gr.Row():
child_gender = gr.Dropdown(
label="Gender",
choices=["Female", "Male", "Prefer not to say"],
value="Female",
elem_classes=["form-section"]
)
child_location = gr.Textbox(
label="Current Location (City/Region)",
placeholder="e.g., Gaza, Kyiv, Aleppo, London",
elem_classes=["form-section"]
)
gr.HTML("""
<div class="status-info" style="margin: 20px 0;">
<strong>π Privacy Notice:</strong> This information is used only to personalize the assessment
and provide culturally appropriate support. No personal data is stored permanently.
</div>
""")
start_assessment_btn = gr.Button(
"π Begin Assessment",
elem_classes=["primary-button"],
variant="primary",
size="lg"
)
onboarding_status = gr.HTML()
# Main Assessment Interface (hidden initially)
with gr.Column(visible=False) as main_interface:
# Child info display
child_info_display = gr.HTML()
with gr.Tab("π¬ Confidential Consultation"):
gr.HTML("""
<div class="status-info">
<strong>π€ REAL AI MODEL:</strong> This platform uses our fine-tuned Gemma 3N model for authentic trauma assessment conversations.
<br><br>
<strong>π‘ Try These Features:</strong>
<br>
β’ Start a conversation: "Hello, I'm worried about my child's recent behavior changes"
<br>
β’ Upload images (child photos, drawings) for AI visual analysis
<br>
β’ Use different languages - the model supports Arabic, Ukrainian, and English
<br>
β’ Generate structured reports with AI-powered assessment insights
<br><br>
<strong>π Privacy:</strong> All conversations are processed securely. Audio support coming soon.
</div>
""")
chatbot = gr.Chatbot(
label="AI Trauma Assessment Specialist",
height=500,
bubble_full_width=False,
type="messages",
show_label=False,
elem_classes=["chat-container"]
)
chat_input = gr.MultimodalTextbox(
interactive=True,
file_count="multiple",
placeholder="Share your concerns here... ΩΩ
ΩΩΩ Ψ§ΩΩΨͺΨ§Ψ¨Ψ© Ψ¨Ψ§ΩΨΉΨ±Ψ¨ΩΨ© β’ ΠΠΎΠΆΠ΅ΡΠ΅ ΠΏΠΈΡΠ°ΡΠΈ ΡΠΊΡΠ°ΡΠ½ΡΡΠΊΠΎΡ",
show_label=False,
sources=["upload"] # Removed microphone - audio not yet supported
)
with gr.Row():
clear_btn = gr.Button("ποΈ New Conversation", variant="secondary", size="sm")
gr.HTML('<div style="flex-grow: 1;"></div>')
with gr.Tab("π Professional Assessment Report"):
gr.HTML("""
<div class="status-warning">
<strong>β οΈ Professional Use Only:</strong> This AI-generated report is a preliminary screening tool.
It must be reviewed by licensed mental health professionals.
</div>
""")
generate_report_btn = gr.Button(
"π Generate Comprehensive Assessment",
variant="primary",
size="lg",
elem_classes=["primary-button"]
)
# Add progress indicator
progress_status = gr.HTML()
report_output = gr.Markdown()
with gr.Row():
save_report_btn = gr.Button("πΎ Save Report", variant="secondary")
push_care_bridge_btn = gr.Button("π Push to Care Bridge", variant="primary")
gr.Button("π§ Email to Professional", variant="secondary", interactive=False)
save_status = gr.HTML()
care_bridge_status = gr.HTML()
with gr.Tab("π¨ββοΈ Specialist Response"):
gr.HTML("""
<div class="status-info">
<strong>π Background Monitoring:</strong> Once you submit a report, we automatically monitor for specialist responses in the background.
Click the button below to check for new responses.
</div>
""")
check_response_btn = gr.Button(
"π Check for Specialist Response",
variant="secondary",
size="lg"
)
specialist_response_output = gr.Markdown()
response_status = gr.HTML()
with gr.Tab("π Resources & Information"):
gr.Markdown("""
## π― How This Assessment Works
Our AI specialist uses evidence-based approaches tailored to your child's specific situation:
### π **Personalized Assessment**
- Responses are customized based on your child's age, gender, and location
- Cultural context is considered throughout the evaluation
- All interactions are stored securely for comprehensive reporting
### π **What We Analyze**
- Behavioral pattern changes specific to your child's developmental stage
- Cultural expressions of trauma and stress
- Family dynamics and support systems
- Environmental factors affecting recovery
### π **Structured Data Collection**
All information is organized into a comprehensive clinical format:
- Child demographics and context
- Detailed parent observations
- AI analysis and risk assessment
- Multimedia evidence (drawings, voice recordings, photos)
- Cultural considerations and recommendations
## π **Care Bridge Platform Integration**
This assessment tool integrates with the Care Bridge Platform to:
- **Share Reports**: Securely transmit assessment data to professional networks
- **Track Progress**: Maintain longitudinal care records
- **Coordinate Care**: Enable multi-disciplinary team collaboration
- **Emergency Response**: Alert crisis intervention teams when needed
""")
# Event handlers
def handle_onboarding(name, age, gender, location):
success, message = app.complete_onboarding(name, age, gender, location)
if success:
child_display = f"""
<div class="child-info-display">
<strong>π€ Assessment for:</strong> {name}, {int(age)} years old ({gender}) β’ π {location}
</div>
"""
return (
gr.Column(visible=False), # Hide onboarding
gr.Column(visible=True), # Show main interface
child_display,
f'<div class="status-success">{message}</div>'
)
else:
return (
gr.Column(visible=True), # Keep onboarding visible
gr.Column(visible=False), # Keep main interface hidden
"",
f'<div class="status-warning">β {message}</div>'
)
# Onboarding completion
start_assessment_btn.click(
handle_onboarding,
inputs=[child_name, child_age, child_gender, child_location],
outputs=[onboarding_section, main_interface, child_info_display, onboarding_status]
)
# Conversation handling
def handle_conversation():
chat_msg = chat_input.submit(
app.add_message,
[chatbot, chat_input],
[chatbot, chat_input]
)
bot_msg = chat_msg.then(
app.bot_response,
chatbot,
chatbot
)
bot_msg.then(
lambda: gr.MultimodalTextbox(interactive=True),
None,
[chat_input]
)
handle_conversation()
# Clear conversation
def clear_conversation():
app.report_data["conversation_history"] = []
app.report_data["assessment_data"]["parent_observations"] = ""
app.report_data["assessment_data"]["ai_analysis"] = ""
app.report_data["media_attachments"] = {"drawings": [], "audio_recordings": [], "photos": []}
return [], gr.MultimodalTextbox(value=None, interactive=True)
clear_btn.click(
clear_conversation,
outputs=[chatbot, chat_input]
)
# Generate report with progress updates
def generate_report_with_progress():
# Show initial progress
progress_updates = []
def update_progress(message):
progress_updates.append(f'<div class="status-info">{message}</div>')
return progress_updates[-1]
# Generate report with progress callback
try:
progress = update_progress("π Starting assessment generation...")
yield "", progress # Empty report, show progress
report = app.generate_comprehensive_report(progress_callback=update_progress)
final_progress = update_progress("β
Assessment completed!")
yield report, final_progress
# Clear progress after 3 seconds
time.sleep(3)
yield report, ""
except Exception as e:
error_progress = f'<div class="status-warning">β Error: {str(e)}</div>'
yield "", error_progress
generate_report_btn.click(
generate_report_with_progress,
outputs=[report_output, progress_status]
)
# Save report
def save_report_with_data(report_content):
if not report_content or "Please complete" in report_content:
return "β No report available to save."
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
# Save markdown report
report_filename = f"trauma_report_{app.report_data['child_info']['name']}_{timestamp}.md"
# Save structured data
data_filename = f"assessment_data_{app.report_data['child_info']['name']}_{timestamp}.json"
try:
with open(report_filename, 'w', encoding='utf-8') as f:
f.write(report_content)
with open(data_filename, 'w', encoding='utf-8') as f:
json.dump(app.report_data, f, indent=2, ensure_ascii=False, default=str)
return f"β
Report saved as: **{report_filename}**<br>π Data saved as: **{data_filename}**"
except Exception as e:
return f"β Error saving files: {str(e)}"
save_report_btn.click(
save_report_with_data,
inputs=[report_output],
outputs=[save_status]
)
# Push report to Care Bridge
def push_to_care_bridge():
success, message = app.push_report_to_care_bridge()
status_class = "status-success" if success else "status-warning"
return f'<div class="{status_class}">{message}</div>'
push_care_bridge_btn.click(
push_to_care_bridge,
outputs=[care_bridge_status]
)
# Check for specialist response
def check_for_response():
has_response, response_content = app.get_specialist_response()
if has_response:
return response_content, '<div class="status-success">β
Specialist response received!</div>'
elif app.polling_active:
return "", '<div class="status-info">π Still monitoring for specialist response...</div>'
elif app.submitted_report_id:
return "", '<div class="status-warning">βΈοΈ Monitoring stopped. No response received within time limit.</div>'
else:
return "", '<div class="status-warning">βΉοΈ Submit a report first to check for responses.</div>'
check_response_btn.click(
check_for_response,
outputs=[specialist_response_output, response_status]
)
# Note: Auto-refresh functionality can be added with newer Gradio versions
# For now, users can manually click the "Check for Specialist Response" button
# Feedback handling
def handle_feedback(x: gr.LikeData):
feedback_type = "π Helpful" if x.liked else "π Needs Improvement"
print(f"User feedback: {feedback_type} on message {x.index}")
# Could store this in report_data for quality improvement
chatbot.like(handle_feedback, None, None, like_user_message=True)
# Launch configuration
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
show_error=True
) |