Spaces:
Running
Running
File size: 31,925 Bytes
1367957 |
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 |
# api/engine.py - Production-Ready Medical Research Engine
# Simplified with one robust reasoning technique for medical research
import asyncio
import json
import os
import sys
import re
from typing import Dict, Any, Optional, List
from datetime import datetime
import concurrent.futures
from pathlib import Path
# ============================================================================
# ENVIRONMENT SETUP
# ============================================================================
# Add project root to Python path
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root))
# Load environment variables
from dotenv import load_dotenv
env_paths = [
project_root / ".env",
project_root / "api" / ".env",
Path.cwd() / ".env",
]
env_loaded = False
for env_path in env_paths:
if env_path.exists():
load_dotenv(dotenv_path=env_path, override=True)
print(f"β
Loaded environment from: {env_path}")
env_loaded = True
break
if not env_loaded:
print("β οΈ No .env file found. Using system environment variables.")
# Check critical environment variables
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
XAI_API_KEY = os.getenv("XAI_API_KEY")
MODEL = os.getenv("MODEL", "gpt-oss-120b")
if not GROQ_API_KEY and not XAI_API_KEY:
print("β WARNING: No API key found in environment!")
print(" Set GROQ_API_KEY or XAI_API_KEY in .env file")
else:
last4 = (GROQ_API_KEY or XAI_API_KEY)[-4:]
print(f"β
API Key found: {'*' * 16}{last4}")
print(f"β
Model configured: {MODEL}")
# ============================================================================
# SINGLE REASONING TECHNIQUE: EVIDENCE-BASED MEDICAL REASONING
# ============================================================================
class MedicalReasoning:
"""Single, robust reasoning technique for medical research"""
@staticmethod
def evidence_based_reasoning(query: str, domain: str, user_context: str, papers_count: int = 0) -> str:
"""
Evidence-based medical reasoning for research insights
Focuses on clinical evidence, study quality, and practical implications
"""
# Map user context to specific focus areas
context_focus = {
"clinician": "Focus on clinical application, treatment decisions, and patient management",
"researcher": "Focus on methodology, evidence quality, and research implications",
"student": "Focus on understanding concepts, foundational knowledge, and learning pathways",
"patient": "Focus on understanding, personal implications, and practical next steps",
"administrator": "Focus on implementation, resources, and systemic considerations",
"general": "Focus on clear explanations and balanced overview"
}
focus = context_focus.get(user_context, "Focus on evidence-based medical insights")
return f"""You are a medical research expert specializing in {domain}.
The user is a {user_context}. {focus}
QUERY: {query}
**Evidence-Based Reasoning Process:**
1. **Evidence Assessment:**
- What is the current state of evidence for this topic?
- What types of studies exist (RCTs, cohort studies, reviews)?
- What is the quality and strength of available evidence?
2. **Clinical/Research Context:**
- How does this apply to {domain} specifically?
- What are the practical implications for {user_context}?
- What are the key considerations in this context?
3. **Critical Analysis:**
- What are the strengths of current evidence?
- What limitations or gaps exist in current knowledge?
- What controversies or alternative perspectives exist?
4. **Practical Implications:**
- What are the actionable insights for {user_context}?
- What are the next steps or recommendations?
- What should be considered for implementation?
Provide a comprehensive, evidence-based answer that synthesizes medical knowledge
with practical implications for {user_context} in {domain}."""
# ============================================================================
# MEDICAL DOMAIN CONFIGURATION
# ============================================================================
MEDICAL_DOMAINS = [
{"id": "internal_medicine", "name": "Internal Medicine", "icon": "π₯",
"description": "General internal medicine and diagnosis"},
{"id": "endocrinology", "name": "Endocrinology", "icon": "π§¬",
"description": "Hormonal and metabolic disorders"},
{"id": "gastroenterology", "name": "Gastroenterology", "icon": "π©Έ",
"description": "Digestive system disorders"},
{"id": "pulmonology", "name": "Pulmonology", "icon": "π«",
"description": "Respiratory diseases and lung disorders"},
{"id": "nephrology", "name": "Nephrology", "icon": "π§ͺ",
"description": "Kidney diseases and renal function"},
{"id": "hematology", "name": "Hematology", "icon": "π©Έ",
"description": "Blood disorders and hematologic diseases"},
{"id": "infectious_disease", "name": "Infectious Diseases", "icon": "π¦ ",
"description": "Infectious diseases and microbiology"},
{"id": "obstetrics_gynecology", "name": "Obstetrics & Gynecology", "icon": "π€°",
"description": "Women's health, pregnancy and reproductive medicine"},
{"id": "pathology", "name": "Pathology", "icon": "π¬",
"description": "Disease diagnosis through tissue examination"},
{"id": "laboratory_medicine", "name": "Laboratory Medicine", "icon": "π§ͺ",
"description": "Clinical laboratory testing and biomarkers"},
{"id": "bioinformatics", "name": "Bioinformatics", "icon": "π»",
"description": "Computational analysis of biological data"},
{"id": "clinical_research", "name": "Clinical Research", "icon": "π",
"description": "Clinical trials and evidence-based medicine"},
{"id": "medical_imaging", "name": "Medical Imaging", "icon": "π©»",
"description": "Medical imaging and radiology"},
{"id": "oncology", "name": "Oncology", "icon": "π¦ ",
"description": "Cancer research and treatment"},
{"id": "cardiology", "name": "Cardiology", "icon": "β€οΈ",
"description": "Heart and cardiovascular diseases"},
{"id": "neurology", "name": "Neurology", "icon": "π§ ",
"description": "Brain and nervous system disorders"},
{"id": "pharmacology", "name": "Pharmacology", "icon": "π",
"description": "Drug therapy and medication management"},
{"id": "genomics", "name": "Genomics", "icon": "π§¬",
"description": "Genetic research and personalized medicine"},
{"id": "public_health", "name": "Public Health", "icon": "π",
"description": "Population health and epidemiology"},
{"id": "surgery", "name": "Surgery", "icon": "βοΈ",
"description": "Surgical procedures and techniques"},
{"id": "pediatrics", "name": "Pediatrics", "icon": "πΆ",
"description": "Child health and pediatric medicine"},
{"id": "psychiatry", "name": "Psychiatry", "icon": "π§ ",
"description": "Mental health and psychiatric disorders"},
{"id": "dermatology", "name": "Dermatology", "icon": "π¦",
"description": "Skin diseases and dermatologic conditions"},
{"id": "orthopedics", "name": "Orthopedics", "icon": "π¦΄",
"description": "Musculoskeletal disorders and bone health"},
{"id": "ophthalmology", "name": "Ophthalmology", "icon": "ποΈ",
"description": "Eye diseases and vision care"},
{"id": "urology", "name": "Urology", "icon": "π§",
"description": "Urinary system and male reproductive health"},
{"id": "emergency_medicine", "name": "Emergency Medicine", "icon": "π",
"description": "Acute care and emergency response"},
{"id": "critical_care", "name": "Critical Care", "icon": "π₯",
"description": "Intensive care and critical illness"},
{"id": "pain_medicine", "name": "Pain Medicine", "icon": "βοΈ",
"description": "Pain management and analgesia"},
{"id": "nutrition", "name": "Nutrition", "icon": "π₯",
"description": "Clinical nutrition and dietary management"},
{"id": "allergy_immunology", "name": "Allergy & Immunology", "icon": "π€§",
"description": "Allergic diseases and immune disorders"},
{"id": "rehabilitation_medicine", "name": "Rehabilitation Medicine", "icon": "βΏ",
"description": "Physical therapy and recovery"},
{"id": "general_medical", "name": "General Medical", "icon": "βοΈ",
"description": "General medical research and clinical questions"},
{"id": "auto", "name": "Auto-detect", "icon": "π€",
"description": "Automatically detect domain from query"}
]
USER_CONTEXTS = [
{"id": "auto", "name": "Auto-detect", "icon": "π€",
"description": "Automatically detect user context"},
{"id": "clinician", "name": "Clinician", "icon": "π¨ββοΈ",
"description": "Medical doctors, nurses, and healthcare providers"},
{"id": "researcher", "name": "Researcher", "icon": "π¬",
"description": "Academic researchers and scientists"},
{"id": "student", "name": "Student", "icon": "π",
"description": "Medical students and trainees"},
{"id": "administrator", "name": "Administrator", "icon": "πΌ",
"description": "Healthcare administrators and managers"},
{"id": "patient", "name": "Patient", "icon": "π€",
"description": "Patients and general public"},
{"id": "general", "name": "General", "icon": "π€",
"description": "General audience"}
]
# Domain detection keywords (simplified)
DOMAIN_KEYWORDS = {
'internal_medicine': ['diagnosis', 'chronic disease', 'acute disease', 'primary care'],
'endocrinology': ['diabetes', 'thyroid', 'hormone', 'metabolism'],
'cardiology': ['heart', 'cardiovascular', 'hypertension', 'ecg'],
'neurology': ['brain', 'stroke', 'alzheimer', 'parkinson'],
'oncology': ['cancer', 'tumor', 'chemotherapy', 'radiation'],
'surgery': ['surgical', 'operation', 'procedure', 'anesthesia'],
'pediatrics': ['child', 'pediatric', 'neonatal', 'infant'],
'psychiatry': ['mental', 'depression', 'anxiety', 'psychiatric'],
'infectious_disease': ['infection', 'bacterial', 'viral', 'antibiotic'],
}
# User context detection keywords
USER_CONTEXT_KEYWORDS = {
'clinician': ['patient', 'clinical', 'treatment', 'diagnosis', 'therapy'],
'researcher': ['research', 'study', 'methodology', 'evidence', 'publication'],
'student': ['learn', 'study', 'exam', 'textbook', 'course'],
'patient': ['i have', 'my symptoms', 'my doctor', 'my treatment', 'pain'],
'administrator': ['policy', 'guideline', 'cost', 'efficiency', 'management']
}
# ============================================================================
# MEDICAL RESEARCH CHAT ENGINE
# ============================================================================
class MedicalResearchEngine:
"""Production-ready medical research engine with evidence-based reasoning"""
def __init__(self):
self.engines: Dict[str, Any] = {}
self.executor = concurrent.futures.ThreadPoolExecutor(max_workers=10)
self.api_configured = False
self.api_error = None
self.model = MODEL
self.reasoning = MedicalReasoning()
# Basic responses for common queries
self.basic_responses = {
"hi": "π Hello! I'm your Medical Research Assistant. I can help with evidence-based medical research questions across various specialties. How can I assist you today?",
"hello": "π Welcome! I specialize in medical research analysis using evidence-based reasoning. What medical topic would you like to explore?",
"help": "π **How to use:**\n1. Ask medical research questions\n2. Specify domain or use auto-detect\n3. Mention your role (clinician, researcher, etc.)\n\n**Examples:**\nβ’ 'Latest treatments for diabetes'\nβ’ 'Research gaps in cancer immunotherapy'\nβ’ 'Clinical guidelines for hypertension'",
"what can you do": "π¬ **Medical Research Assistant Capabilities:**\nβ’ Evidence-based medical analysis\nβ’ Domain-specific research insights\nβ’ Clinical/research perspective adaptation\nβ’ Paper summarization and analysis\nβ’ Research gap identification\n\nAsk me about any medical research topic!"
}
self._test_api_connection()
print(f"π Medical Research Engine Initialized")
def _test_api_connection(self):
"""Test API connection"""
try:
from chat.rag_engine import EnhancedRAGEngine
EnhancedRAGEngine(session_id="test_init", model=self.model)
self.api_configured = True
print("β
API Connection Test: SUCCESS")
except Exception as e:
self.api_configured = False
self.api_error = str(e)
print(f"β API Connection Test: FAILED - {e}")
def detect_domain_from_query(self, query: str, current_domain: str = "auto") -> str:
"""Detect medical domain from query text"""
if current_domain != "auto":
return current_domain
query_lower = query.lower()
best_domain = 'general_medical'
best_score = 0
for domain_id, keywords in DOMAIN_KEYWORDS.items():
score = sum(1 for keyword in keywords if keyword in query_lower)
if score > best_score:
best_score = score
best_domain = domain_id
return best_domain if best_score > 0 else 'general_medical'
def detect_user_context_from_query(self, query: str, current_context: str = "auto") -> str:
"""Detect user context from query text"""
if current_context != "auto":
return current_context
query_lower = query.lower()
best_context = 'general'
best_score = 0
for context_id, keywords in USER_CONTEXT_KEYWORDS.items():
score = sum(1 for keyword in keywords if keyword in query_lower)
if score > best_score:
best_score = score
best_context = context_id
return best_context if best_score > 0 else 'general'
def get_domain_info(self, domain_id: str) -> Dict:
"""Get information about a domain"""
for domain in MEDICAL_DOMAINS:
if domain["id"] == domain_id:
return domain
return {
"id": domain_id,
"name": domain_id.replace('_', ' ').title(),
"icon": "βοΈ",
"description": "Medical research domain"
}
def get_user_context_info(self, context_id: str) -> Dict:
"""Get information about a user context"""
for context in USER_CONTEXTS:
if context["id"] == context_id:
return context
return {
"id": context_id,
"name": context_id.replace('_', ' ').title(),
"icon": "π€",
"description": "User context"
}
def _classify_query(self, query: str) -> str:
"""Classify query type"""
query_lower = query.lower().strip()
# Check if it's a basic greeting/help
if query_lower in self.basic_responses:
return "basic"
# Check for paper summarization
if any(term in query_lower for term in ['summarize paper', 'paper titled', 'article about']):
return "paper_summary"
# Default to research query
return "research"
async def process_query_async(
self,
query: str,
domain: str = "general_medical",
session_id: str = "default",
user_context: str = "auto",
**kwargs
) -> Dict[str, Any]:
"""Process medical research query with evidence-based reasoning"""
# Auto-detect domain if needed
if domain == "auto":
domain = self.detect_domain_from_query(query)
# Auto-detect user context if needed
if user_context == "auto":
user_context = self.detect_user_context_from_query(query)
# Get domain and context info
domain_info = self.get_domain_info(domain)
context_info = self.get_user_context_info(user_context)
# Classify the query
query_type = self._classify_query(query)
# Handle basic queries
if query_type == "basic":
response_text = self.basic_responses.get(query.lower(),
f"π I'm your Medical Research Assistant specializing in {domain_info['name']}. "
f"How can I help with your medical research question today?"
)
return {
"answer": response_text,
"papers_used": 0,
"confidence_score": {"overall_score": 95.0, "level": "HIGH π’"},
"query_type": "basic",
"user_context": user_context,
"domain": domain,
"domain_info": domain_info,
"user_context_info": context_info
}
# Handle paper summarization
elif query_type == "paper_summary":
return await self._handle_paper_summarization(query, session_id, domain, user_context)
# Handle research queries
else:
return await self._handle_research_query(query, domain, user_context, session_id, kwargs)
async def _handle_research_query(self, query: str, domain: str, user_context: str,
session_id: str, kwargs: Dict) -> Dict[str, Any]:
"""Handle medical research queries with evidence-based reasoning"""
# Get domain and context info
domain_info = self.get_domain_info(domain)
context_info = self.get_user_context_info(user_context)
# Apply evidence-based reasoning
reasoning_prompt = self.reasoning.evidence_based_reasoning(query, domain, user_context)
# Initialize engine
engine = self.initialize_session(session_id)
# Run in thread pool
loop = asyncio.get_event_loop()
try:
# Process query with timeout
response = await asyncio.wait_for(
loop.run_in_executor(
self.executor,
lambda: engine.answer_research_question(
query=query,
domain=domain,
user_context=user_context,
reasoning_method="evidence_based", # Pass reasoning method
**{k: v for k, v in kwargs.items() if k != 'enable_reasoning'}
)
),
timeout=kwargs.get('timeout', 60.0)
)
# Clean up response
answer = response.get("answer", "")
cleaned_answer = self._clean_response(answer, domain_info, query)
# Prepare result
result = {
"answer": cleaned_answer,
"papers_used": response.get("papers_used", 0),
"confidence_score": response.get("confidence_score", {"overall_score": 0}),
"query_type": "research",
"user_context": user_context,
"domain": domain,
"domain_info": domain_info,
"user_context_info": context_info,
"reasoning_method": "evidence_based"
}
# Add metrics if available
if "enhanced_metrics" in response:
result["metrics"] = response["enhanced_metrics"]
return result
except asyncio.TimeoutError:
return self._create_timeout_response(query, domain_info, context_info)
except Exception as e:
return self._create_error_response(query, domain_info, context_info, str(e))
def _clean_response(self, answer: str, domain_info: Dict, query: str) -> str:
"""Clean up the response for presentation"""
if not answer:
return f"# π¬ **Medical Research Analysis**\n\n**Domain:** {domain_info['name']}\n\nNo analysis generated. Please try again."
# Remove any internal reasoning prompts that might have leaked
patterns_to_remove = [
r'Chain Of Thought.*?\n\n',
r'Stepβ―\d+.*?\n\n',
r'Reasoning Process.*?\n\n'
]
cleaned = answer
for pattern in patterns_to_remove:
cleaned = re.sub(pattern, '', cleaned, flags=re.DOTALL | re.IGNORECASE)
# Ensure clean structure
if not cleaned.startswith('# '):
cleaned = f"# π¬ **Medical Research Analysis**\n\n**Domain:** {domain_info['name']}\n**Topic:** {query}\n\n{cleaned}"
return cleaned.strip()
async def _handle_paper_summarization(self, query: str, session_id: str,
domain: str, user_context: str) -> Dict[str, Any]:
"""Handle single paper summarization requests"""
try:
engine = self.initialize_session(session_id)
# Extract paper title from query
paper_title = self._extract_paper_title(query)
if not paper_title:
return {
"answer": """# π **Paper Summarization Help**
Please provide a paper title to summarize, for example:
β’ "Summarize the paper 'Deep Learning for Medical Imaging'"
β’ "What does the paper 'COVID-19 Vaccine Efficacy Study' find?"
β’ "Give me a summary of 'Guidelines for Hypertension Management'"
I'll provide a comprehensive analysis including methodology, findings, and implications.""",
"papers_used": 0,
"confidence_score": {"overall_score": 0},
"query_type": "help"
}
# Run summarization
loop = asyncio.get_event_loop()
summary_result = await asyncio.wait_for(
loop.run_in_executor(
self.executor,
lambda: engine.summarize_single_paper(
paper_title=paper_title,
user_query=query
)
),
timeout=30.0
)
if summary_result.get("success"):
# Format the response
response_text = self._format_paper_summary(summary_result, domain)
return {
"answer": response_text,
"papers_used": 1,
"confidence_score": {"overall_score": summary_result.get("confidence", 0.7) * 100},
"query_type": "paper_summary",
"paper_details": {
"title": summary_result.get("paper_title", ""),
"authors": summary_result.get("authors", []),
"date": summary_result.get("publication_date", ""),
"source": summary_result.get("source", "")
}
}
else:
return {
"answer": f"""# π **Paper Not Found**
I couldn't find the paper: *"{paper_title}"*
**Suggestions:**
1. Check the exact title spelling
2. Try a more general search
3. Search by key concepts instead
You can also request: "Find papers about [topic]" or "Research on [condition]".""",
"papers_used": 0,
"confidence_score": {"overall_score": 0},
"query_type": "paper_summary_error"
}
except Exception as e:
return {
"answer": f"""# π¨ **Summarization Error**
Error: {str(e)}
Please try again with a different paper or simpler request.""",
"papers_used": 0,
"confidence_score": {"overall_score": 0},
"query_type": "error"
}
def _extract_paper_title(self, query: str) -> Optional[str]:
"""Extract paper title from query"""
# Pattern 1: Paper titled "Title"
match = re.search(r'paper (?:titled|called) "([^"]+)"', query.lower())
if match:
return match.group(1).strip()
# Pattern 2: "Title" paper
match = re.search(r'"([^"]+)" paper', query.lower())
if match:
return match.group(1).strip()
# Pattern 3: Summarize the paper Title
match = re.search(r'summarize (?:the )?paper (.+)', query.lower())
if match:
title = match.group(1).strip()
title = re.sub(r'\?$', '', title)
return title.strip()
return None
def _format_paper_summary(self, summary_result: Dict, domain: str) -> str:
"""Format paper summary for display"""
title = summary_result.get("paper_title", "Unknown Paper")
authors = summary_result.get("authors", [])
date = summary_result.get("publication_date", "")
source = summary_result.get("source", "")
summary = summary_result.get("summary", "")
# Format authors
if authors and isinstance(authors, list):
if len(authors) <= 3:
author_str = ", ".join(authors)
else:
author_str = f"{authors[0]} et al."
else:
author_str = "Unknown authors"
# Build response
response = f"""# π **Paper Analysis**
**Title:** {title}
**Authors:** {author_str}
**Published:** {date}
**Source:** {source}
---
## π **Summary**
{summary}
---
## π **Key Points**
β’ Main findings and conclusions
β’ Methodology and study design
β’ Clinical/research implications
β’ Limitations and future directions
*Analysis confidence: {summary_result.get('confidence', 0.7) * 100:.1f}%*"""
return response
def _create_timeout_response(self, query: str, domain_info: Dict, context_info: Dict) -> Dict[str, Any]:
"""Create timeout response"""
return {
"answer": f"""# β±οΈ **Query Timed Out**
**Domain:** {domain_info['name']}
**User Context:** {context_info['name']}
The analysis was taking too long. Try:
β’ Simplifying your question
β’ Being more specific
β’ Reducing the scope
**Example:** "Key treatments for [condition] in {domain_info['name']}" """,
"papers_used": 0,
"confidence_score": {"overall_score": 0},
"query_type": "error",
"user_context": context_info["id"],
"domain": domain_info["id"],
"error": "timeout"
}
def _create_error_response(self, query: str, domain_info: Dict, context_info: Dict, error: str) -> Dict[str, Any]:
"""Create error response"""
return {
"answer": f"""# π¨ **Analysis Error**
**Domain:** {domain_info['name']}
**User Context:** {context_info['name']}
**Error:** {error}
**Troubleshooting:**
1. Check your internet connection
2. Try a simpler query
3. Verify domain selection
4. Contact support if problem persists""",
"papers_used": 0,
"confidence_score": {"overall_score": 0},
"query_type": "error",
"user_context": context_info["id"],
"domain": domain_info["id"],
"error": error
}
def initialize_session(self, session_id: str):
"""Initialize engine for a session"""
if session_id not in self.engines:
try:
if not self.api_configured:
self.engines[session_id] = self._create_fallback_engine()
print(f"β οΈ Session {session_id}: Using fallback engine")
else:
from chat.rag_engine import EnhancedRAGEngine
self.engines[session_id] = EnhancedRAGEngine(
session_id=session_id,
model=self.model
)
print(f"β
Session engine initialized: {session_id}")
except Exception as e:
print(f"β Failed to initialize engine for {session_id}: {e}")
self.engines[session_id] = self._create_fallback_engine()
return self.engines[session_id]
def _create_fallback_engine(self):
"""Create a fallback engine when API fails"""
class FallbackEngine:
def __init__(self):
self.session_id = "fallback"
self.metrics = {"total_queries": 0}
def answer_research_question(self, **kwargs):
query = kwargs.get("query", "")
domain = kwargs.get("domain", "general_medical")
user_context = kwargs.get("user_context", "auto")
self.metrics["total_queries"] += 1
if query.lower().strip() in {"hi", "hello", "hey"}:
return {
"answer": f"""# π Welcome to Medical Research Assistant!
**Setup Required:**
1. Get an API key from https://console.groq.com
2. Create a `.env` file with:
GROQ_API_KEY=your_key_here
MODEL=gpt-oss-120b
3. Restart the server
**Features After Setup:**
β’ Evidence-based medical research analysis
β’ Domain-specific insights
β’ Paper summarization
β’ Research gap analysis""",
"papers_used": 0,
"confidence": 0.15,
}
return {
"answer": f"""β οΈ **API Not Configured**
Current query: {query}
Domain: {domain}
User Context: {user_context}
Please configure your GROQ_API_KEY in the .env file and restart the server.""",
"papers_used": 0,
"confidence": 0.10,
}
def summarize_single_paper(self, **kwargs):
"""Fallback for single paper summarization"""
paper_title = kwargs.get("paper_title", "Unknown Paper")
return {
"success": False,
"error": "API not configured",
"paper_title": paper_title,
"summary": "Please configure your API key to use paper analysis."
}
return FallbackEngine()
def get_engine_status(self) -> Dict[str, Any]:
"""Get engine status and metrics"""
return {
"api_configured": self.api_configured,
"model": self.model,
"active_sessions": len(self.engines),
"domains_supported": len(MEDICAL_DOMAINS),
"user_contexts_supported": len(USER_CONTEXTS),
"reasoning_technique": "evidence_based_reasoning",
"features": [
"medical_research_analysis",
"domain_specific_insights",
"user_context_adaptation",
"paper_summarization",
"evidence_based_reasoning"
]
}
def clear_memory(self):
"""Clear engine memory for all sessions"""
self.engines.clear()
print("π§Ή Engine memory cleared for all sessions") |