-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.html
More file actions
53 lines (52 loc) · 2.37 KB
/
agents.html
File metadata and controls
53 lines (52 loc) · 2.37 KB
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
---
layout: default
title: AI Agents - Cassandra Docs
description: Learn about the three AI agents in Cassandra's autonomous intelligence pipeline.
---
<section class="py-20 bg-gris-perle text-anthracite">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 fade-in">
<h1 class="text-4xl md:text-5xl font-bold text-center mb-12">
Autonomous Intelligence Pipeline
</h1>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-blanc p-8 rounded-lg text-center shadow-lg">
<i class="fas fa-brain text-6xl text-bleu-arctique mb-4"></i>
<h3 class="text-2xl font-semibold mb-4">SEGMENTATION AGENT</h3>
<p class="mb-4">Automated 3D Tumor Detection</p>
<ul class="text-left space-y-2">
<li>• Processes multi-modal MRI (T1, T2, FLAIR, T1CE)</li>
<li>• MONAI + PyTorch deep learning models</li>
<li>• Outputs standardized NIfTI segmentation masks</li>
<li>• Identifies tumor boundaries in 3D space</li>
</ul>
<p class="mt-4 text-sm">Technology: MONAI • PyTorch • Python</p>
</div>
<div class="bg-blanc p-8 rounded-lg text-center shadow-lg">
<i class="fas fa-chart-bar text-6xl text-bleu-arctique mb-4"></i>
<h3 class="text-2xl font-semibold mb-4">VOLUMETRY AGENT</h3>
<p class="mb-4">Quantitative Analysis & Metrics</p>
<ul class="text-left space-y-2">
<li>• Computes precise tumor volumes</li>
<li>• Calculates asymmetry ratios</li>
<li>• Extracts radiomic features</li>
<li>• Generates structured JSON reports</li>
</ul>
<p class="mt-4 text-sm">
Technology: Python • Medical Imaging Libraries
</p>
</div>
<div class="bg-blanc p-8 rounded-lg text-center shadow-lg">
<i class="fas fa-file-alt text-6xl text-bleu-arctique mb-4"></i>
<h3 class="text-2xl font-semibold mb-4">LLM ANALYSIS AGENT</h3>
<p class="mb-4">Clinical Report Generation</p>
<ul class="text-left space-y-2">
<li>• Interprets quantitative results</li>
<li>• Generates natural language summaries</li>
<li>• Comparative analysis between studies</li>
<li>• Context-aware medical insights via RAG</li>
</ul>
<p class="mt-4 text-sm">Technology: Gemini API • Vertex AI</p>
</div>
</div>
</div>
</section>