File size: 28,281 Bytes
c172dfc | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MediScan AI - Medical File Analysis</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.file-drop-area {
border: 2px dashed #3b82f6;
transition: all 0.3s ease;
}
.file-drop-area.active {
border-color: #10b981;
background-color: #f0fdf4;
}
.file-drop-area.error {
border-color: #ef4444;
background-color: #fef2f2;
}
.progress-bar {
height: 6px;
transition: width 0.3s ease;
}
.report-container {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
}
.report-container.open {
max-height: 1000px;
}
.fade-in {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="text-center mb-12">
<h1 class="text-4xl font-bold text-blue-800 mb-2">MediScan AI</h1>
<p class="text-lg text-gray-600">Professional Medical File Analysis Powered by DeepSeek AI</p>
<div class="w-24 h-1 bg-blue-500 mx-auto mt-4 rounded-full"></div>
</header>
<!-- Main App Container -->
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
<!-- Upload Section -->
<div id="uploadSection" class="p-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Upload Medical Files for Analysis</h2>
<div class="mb-8">
<div id="fileDropArea" class="file-drop-area rounded-lg p-8 text-center cursor-pointer">
<div class="flex flex-col items-center justify-center space-y-4">
<i class="fas fa-cloud-upload-alt text-5xl text-blue-500"></i>
<p class="text-xl font-medium text-gray-700">Drag & Drop your files here</p>
<p class="text-gray-500">or</p>
<button id="browseFilesBtn" class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-300">
Browse Files
</button>
<p class="text-sm text-gray-500 mt-2">Supports: JPG, PNG, PDF, TXT (Max 10MB each)</p>
</div>
<input id="fileInput" type="file" class="hidden" multiple accept=".jpg,.jpeg,.png,.pdf,.txt">
</div>
<div id="fileError" class="text-red-500 text-sm mt-2 hidden"></div>
</div>
<!-- Selected Files Preview -->
<div id="filePreviewContainer" class="hidden">
<h3 class="text-lg font-medium text-gray-800 mb-4">Selected Files</h3>
<div id="fileList" class="space-y-3"></div>
<div class="mt-6 flex justify-between items-center">
<button id="clearFilesBtn" class="text-red-500 hover:text-red-700 flex items-center">
<i class="fas fa-trash-alt mr-2"></i> Clear All
</button>
<button id="analyzeBtn" class="px-6 py-3 bg-green-600 text-white rounded-lg hover:bg-green-700 transition duration-300 flex items-center">
<i class="fas fa-microscope mr-2"></i> Analyze Files
</button>
</div>
</div>
</div>
<!-- Loading Section -->
<div id="loadingSection" class="hidden p-8 text-center">
<div class="flex flex-col items-center justify-center space-y-6 py-12">
<div class="relative">
<div class="w-24 h-24 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-brain text-4xl text-blue-600 pulse"></i>
</div>
<div class="absolute -inset-2 border-4 border-blue-200 rounded-full animate-spin"></div>
</div>
<h3 class="text-2xl font-medium text-gray-800">Analyzing Your Medical Files</h3>
<p class="text-gray-600">Our AI is carefully reviewing your documents to provide a professional assessment.</p>
<div class="w-full bg-gray-200 rounded-full h-2.5 max-w-md">
<div id="progressBar" class="progress-bar bg-blue-600 rounded-full" style="width: 0%"></div>
</div>
<p id="progressText" class="text-sm text-gray-500">Preparing analysis...</p>
</div>
</div>
<!-- Results Section -->
<div id="resultsSection" class="hidden p-8">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-semibold text-gray-800">Medical Analysis Report</h2>
<button id="newAnalysisBtn" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-300">
<i class="fas fa-plus mr-2"></i> New Analysis
</button>
</div>
<div class="bg-blue-50 border-l-4 border-blue-500 p-4 mb-8">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-blue-500 mt-1"></i>
</div>
<div class="ml-3">
<p class="text-sm text-blue-700">
This report is generated by AI and should be reviewed by a qualified healthcare professional.
It is not intended as a substitute for professional medical advice.
</p>
</div>
</div>
</div>
<!-- Report Summary -->
<div class="mb-8 bg-white rounded-lg shadow-sm border border-gray-200 overflow-hidden">
<div class="px-6 py-4 bg-gray-50 border-b border-gray-200">
<h3 class="text-lg font-medium text-gray-800">Summary of Findings</h3>
</div>
<div class="p-6">
<div id="reportSummary" class="prose max-w-none text-gray-700">
<!-- AI-generated content will go here -->
</div>
</div>
</div>
<!-- Detailed Analysis -->
<div class="mb-8">
<div class="flex items-center justify-between cursor-pointer" id="detailedAnalysisHeader">
<h3 class="text-lg font-medium text-gray-800">Detailed Analysis</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
</div>
<div id="detailedAnalysisContent" class="report-container mt-4 bg-white rounded-lg shadow-sm border border-gray-200 overflow-hidden">
<div class="p-6">
<div id="detailedReport" class="prose max-w-none text-gray-700">
<!-- AI-generated content will go here -->
</div>
</div>
</div>
</div>
<!-- Recommendations -->
<div class="mb-8">
<div class="flex items-center justify-between cursor-pointer" id="recommendationsHeader">
<h3 class="text-lg font-medium text-gray-800">Clinical Recommendations</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
</div>
<div id="recommendationsContent" class="report-container mt-4 bg-white rounded-lg shadow-sm border border-gray-200 overflow-hidden">
<div class="p-6">
<div id="recommendationsReport" class="prose max-w-none text-gray-700">
<!-- AI-generated content will go here -->
</div>
</div>
</div>
</div>
<!-- Disclaimer -->
<div class="bg-red-50 border-l-4 border-red-500 p-4 rounded">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-triangle text-red-500 mt-1"></i>
</div>
<div class="ml-3">
<p class="text-sm text-red-700">
<strong>Important:</strong> This AI-generated report is for informational purposes only and does not constitute medical advice.
Always consult with a qualified healthcare provider for diagnosis and treatment.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-16 text-center text-gray-500 text-sm">
<p>© 2023 MediScan AI. All rights reserved. Powered by DeepSeek technology.</p>
<p class="mt-2">This tool is HIPAA compliant and uses end-to-end encryption for all file uploads.</p>
</footer>
</div>
<script>
// DOM Elements
const fileInput = document.getElementById('fileInput');
const fileDropArea = document.getElementById('fileDropArea');
const browseFilesBtn = document.getElementById('browseFilesBtn');
const clearFilesBtn = document.getElementById('clearFilesBtn');
const analyzeBtn = document.getElementById('analyzeBtn');
const fileList = document.getElementById('fileList');
const filePreviewContainer = document.getElementById('filePreviewContainer');
const fileError = document.getElementById('fileError');
const uploadSection = document.getElementById('uploadSection');
const loadingSection = document.getElementById('loadingSection');
const resultsSection = document.getElementById('resultsSection');
const newAnalysisBtn = document.getElementById('newAnalysisBtn');
const progressBar = document.getElementById('progressBar');
const progressText = document.getElementById('progressText');
const reportSummary = document.getElementById('reportSummary');
const detailedReport = document.getElementById('detailedReport');
const recommendationsReport = document.getElementById('recommendationsReport');
// Accordion elements
const detailedAnalysisHeader = document.getElementById('detailedAnalysisHeader');
const detailedAnalysisContent = document.getElementById('detailedAnalysisContent');
const recommendationsHeader = document.getElementById('recommendationsHeader');
const recommendationsContent = document.getElementById('recommendationsContent');
// State
let selectedFiles = [];
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
const ALLOWED_TYPES = ['image/jpeg', 'image/png', 'application/pdf', 'text/plain'];
// Event Listeners
browseFilesBtn.addEventListener('click', () => fileInput.click());
fileInput.addEventListener('change', handleFileSelect);
clearFilesBtn.addEventListener('click', clearFiles);
analyzeBtn.addEventListener('click', analyzeFiles);
newAnalysisBtn.addEventListener('click', resetAnalysis);
// Accordion functionality
detailedAnalysisHeader.addEventListener('click', () => toggleAccordion(detailedAnalysisContent));
recommendationsHeader.addEventListener('click', () => toggleAccordion(recommendationsContent));
// Drag and drop events
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
fileDropArea.addEventListener(eventName, preventDefaults, false);
});
['dragenter', 'dragover'].forEach(eventName => {
fileDropArea.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
fileDropArea.addEventListener(eventName, unhighlight, false);
});
fileDropArea.addEventListener('drop', handleDrop, false);
// Functions
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
function highlight() {
fileDropArea.classList.add('active');
}
function unhighlight() {
fileDropArea.classList.remove('active');
}
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
handleFiles(files);
}
function handleFileSelect(e) {
handleFiles(e.target.files);
}
function handleFiles(files) {
fileError.classList.add('hidden');
fileDropArea.classList.remove('error');
const newFiles = Array.from(files).filter(file => {
// Check file type
if (!ALLOWED_TYPES.includes(file.type)) {
showError(`File type not supported: ${file.name}`);
return false;
}
// Check file size
if (file.size > MAX_FILE_SIZE) {
showError(`File too large (max 10MB): ${file.name}`);
return false;
}
// Check for duplicates
if (selectedFiles.some(f => f.name === file.name && f.size === file.size)) {
showError(`Duplicate file: ${file.name}`);
return false;
}
return true;
});
if (newFiles.length > 0) {
selectedFiles = [...selectedFiles, ...newFiles];
renderFileList();
filePreviewContainer.classList.remove('hidden');
}
}
function showError(message) {
fileError.textContent = message;
fileError.classList.remove('hidden');
fileDropArea.classList.add('error');
}
function renderFileList() {
fileList.innerHTML = '';
selectedFiles.forEach((file, index) => {
const fileItem = document.createElement('div');
fileItem.className = 'flex items-center justify-between p-3 bg-gray-50 rounded-lg';
const fileInfo = document.createElement('div');
fileInfo.className = 'flex items-center space-x-3';
const icon = document.createElement('i');
if (file.type.startsWith('image/')) {
icon.className = 'fas fa-image text-blue-500';
} else if (file.type === 'application/pdf') {
icon.className = 'fas fa-file-pdf text-red-500';
} else {
icon.className = 'fas fa-file-alt text-gray-500';
}
const fileName = document.createElement('span');
fileName.className = 'text-gray-700 truncate max-w-xs';
fileName.textContent = file.name;
const fileSize = document.createElement('span');
fileSize.className = 'text-sm text-gray-500';
fileSize.textContent = formatFileSize(file.size);
fileInfo.appendChild(icon);
fileInfo.appendChild(fileName);
fileInfo.appendChild(fileSize);
const removeBtn = document.createElement('button');
removeBtn.className = 'text-red-400 hover:text-red-600';
removeBtn.innerHTML = '<i class="fas fa-times"></i>';
removeBtn.addEventListener('click', () => removeFile(index));
fileItem.appendChild(fileInfo);
fileItem.appendChild(removeBtn);
fileList.appendChild(fileItem);
});
}
function formatFileSize(bytes) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
function removeFile(index) {
selectedFiles.splice(index, 1);
if (selectedFiles.length === 0) {
filePreviewContainer.classList.add('hidden');
} else {
renderFileList();
}
}
function clearFiles() {
selectedFiles = [];
filePreviewContainer.classList.add('hidden');
fileInput.value = '';
}
function analyzeFiles() {
if (selectedFiles.length === 0) {
showError('Please select at least one file to analyze');
return;
}
// Show loading section
uploadSection.classList.add('hidden');
loadingSection.classList.remove('hidden');
// Simulate analysis progress
simulateAnalysisProgress();
}
function simulateAnalysisProgress() {
let progress = 0;
const interval = setInterval(() => {
progress += Math.random() * 15;
if (progress > 100) progress = 100;
progressBar.style.width = `${progress}%`;
if (progress < 30) {
progressText.textContent = "Extracting data from files...";
} else if (progress < 60) {
progressText.textContent = "Analyzing medical content...";
} else if (progress < 90) {
progressText.textContent = "Generating professional assessment...";
} else {
progressText.textContent = "Finalizing report...";
}
if (progress === 100) {
clearInterval(interval);
setTimeout(showResults, 1000);
}
}, 500);
}
function showResults() {
loadingSection.classList.add('hidden');
resultsSection.classList.remove('hidden');
// Generate mock AI analysis (in a real app, this would call the DeepSeek API)
generateMockAnalysis();
// Scroll to top
window.scrollTo(0, 0);
}
function generateMockAnalysis() {
// This is where you would integrate with the actual DeepSeek API
// For demo purposes, we're using mock data
// Simulate API delay
setTimeout(() => {
// Generate report based on file types
const hasImages = selectedFiles.some(f => f.type.startsWith('image/'));
const hasPDFs = selectedFiles.some(f => f.type === 'application/pdf');
const hasText = selectedFiles.some(f => f.type === 'text/plain');
// Summary
reportSummary.innerHTML = `
<h4>Medical Analysis Overview</h4>
<p>Based on the ${selectedFiles.length} file${selectedFiles.length > 1 ? 's' : ''} you provided, our AI has identified the following key findings:</p>
<ul>
${hasImages ? '<li><strong>Medical Imaging:</strong> The submitted images show normal anatomical structures with no immediate signs of pathology detected.</li>' : ''}
${hasPDFs ? '<li><strong>Medical Reports:</strong> The documents contain standard medical terminology consistent with routine clinical documentation.</li>' : ''}
${hasText ? '<li><strong>Clinical Notes:</strong> The text content appears to be typical medical documentation without alarming findings.</li>' : ''}
<li><strong>Overall Assessment:</strong> No critical abnormalities detected in the provided materials.</li>
</ul>
<p>Please review the detailed analysis below for more specific information.</p>
`;
// Detailed Analysis
detailedReport.innerHTML = `
<h4>Comprehensive File Analysis</h4>
<p>Below is the detailed breakdown of each file type analyzed:</p>
${hasImages ? `
<h5>Medical Imaging Analysis</h5>
<p>The submitted images were analyzed using advanced computer vision algorithms trained on medical datasets:</p>
<ul>
<li>No overt masses, lesions, or structural abnormalities detected</li>
<li>Normal tissue density and contrast patterns observed</li>
<li>No signs of acute inflammation or trauma visible</li>
<li>Anatomical structures appear within normal limits</li>
</ul>
<p><em>Note: Image quality was sufficient for analysis, though higher resolution may provide more definitive results.</em></p>
` : ''}
${hasPDFs ? `
<h5>Document Analysis</h5>
<p>The PDF documents were processed for medical content extraction:</p>
<ul>
<li>Standard medical terminology identified throughout documents</li>
<li>No abnormal lab values or concerning measurements noted</li>
<li>Document structure suggests routine medical reporting</li>
<li>No urgent or emergent terminology detected</li>
</ul>
` : ''}
${hasText ? `
<h5>Clinical Notes Analysis</h5>
<p>The text content was analyzed for clinical significance:</p>
<ul>
<li>Standard medical abbreviations and terminology used</li>
<li>No red flag symptoms or concerning patterns identified</li>
<li>Documentation appears consistent with routine care</li>
<li>No evidence of acute conditions requiring immediate attention</li>
</ul>
` : ''}
<h5>Limitations</h5>
<p>This analysis has several important limitations:</p>
<ol>
<li>AI interpretation is not equivalent to physician review</li>
<li>Findings are based solely on the provided materials</li>
<li>Clinical context may affect interpretation</li>
<li>Subtle findings may require specialist review</li>
</ol>
`;
// Recommendations
recommendationsReport.innerHTML = `
<h4>Clinical Recommendations</h4>
<p>Based on the analysis of your submitted materials, we recommend:</p>
<ul>
<li><strong>Routine Follow-up:</strong> Continue with standard care as directed by your healthcare provider.</li>
<li><strong>Physician Review:</strong> Share these results with your doctor for clinical correlation.</li>
${hasImages ? '<li><strong>Imaging Follow-up:</strong> Consider specialist radiology review if clinically indicated.</li>' : ''}
<li><strong>Monitoring:</strong> Report any new or worsening symptoms to your healthcare team.</li>
</ul>
<h5>When to Seek Immediate Care</h5>
<p>Contact your healthcare provider or seek emergency care if you experience:</p>
<ul>
<li>Severe pain or discomfort</li>
<li>Sudden changes in vision, speech, or mobility</li>
<li>Chest pain or difficulty breathing</li>
<li>Uncontrolled bleeding</li>
<li>Any other concerning symptoms</li>
</ul>
`;
// Open the first accordion by default
toggleAccordion(detailedAnalysisContent, true);
// Add fade-in effect to content
[reportSummary, detailedReport, recommendationsReport].forEach(el => {
el.classList.add('fade-in');
});
}, 500);
}
function resetAnalysis() {
selectedFiles = [];
fileInput.value = '';
filePreviewContainer.classList.add('hidden');
resultsSection.classList.add('hidden');
uploadSection.classList.remove('hidden');
// Reset progress bar
progressBar.style.width = '0%';
// Scroll to top
window.scrollTo(0, 0);
}
function toggleAccordion(contentElement, forceOpen = false) {
const isOpen = contentElement.classList.contains('open') && !forceOpen;
if (isOpen) {
contentElement.classList.remove('open');
contentElement.previousElementSibling.querySelector('i').classList.remove('transform', 'rotate-180');
} else {
contentElement.classList.add('open');
contentElement.previousElementSibling.querySelector('i').classList.add('transform', 'rotate-180');
}
}
// Initialize accordions to be closed
document.addEventListener('DOMContentLoaded', () => {
detailedAnalysisContent.style.maxHeight = '0';
recommendationsContent.style.maxHeight = '0';
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=techguy1/mediscan" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |