<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lochan Visnu</title>
    <description>The latest articles on DEV Community by Lochan Visnu (@lochan_visnu_74dc73274621).</description>
    <link>https://dev.to/lochan_visnu_74dc73274621</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3935750%2F8a1ad100-832a-49bd-8070-30c39a2087e3.png</url>
      <title>DEV Community: Lochan Visnu</title>
      <link>https://dev.to/lochan_visnu_74dc73274621</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lochan_visnu_74dc73274621"/>
    <language>en</language>
    <item>
      <title>🩺 Inside Med AI: How We Engineered a 100M Token Hyper-Scale Clinical Intelligence Suite 🚀</title>
      <dc:creator>Lochan Visnu</dc:creator>
      <pubDate>Sat, 30 May 2026 23:13:56 +0000</pubDate>
      <link>https://dev.to/lochan_visnu_74dc73274621/inside-med-ai-how-we-engineered-a-100m-token-hyper-scale-clinical-intelligence-suite-4on2</link>
      <guid>https://dev.to/lochan_visnu_74dc73274621/inside-med-ai-how-we-engineered-a-100m-token-hyper-scale-clinical-intelligence-suite-4on2</guid>
      <description>&lt;p&gt;Hello, tech innovators, data nerds, and health-tech visionaries! 👋 Welcome to the ultimate engineering deep-dive of &lt;strong&gt;Med AI&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;If you followed our journey in Round 1, you know we laid the groundwork by analyzing how raw brute-force data parsing heavily chokes LLM context windows and spikes infrastructure bills. But we didn't stop there. We got selected in top 15 for Round 2, we took the baseline prototype and scaled it into a monster: benchmarking &lt;strong&gt;three entirely different retrieval architectures&lt;/strong&gt; against a massive, custom-generated &lt;strong&gt;100 Million Token Dataset&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;Here is the continuation of how we evolved Med AI from a local hack into a hyper-scale clinical intelligence suite. 🏎️💨&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F77r2qbzq1mjkeupdlr3e.png" alt="gist" width="800" height="492"&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  ⏪ Round 1 Retrospective: The Genesis of Med AI
&lt;/h2&gt;

&lt;p&gt;In the first round, our mission was simple but brutal: prove that standard linear search methods break down when processing large-scale medical data. We built our initial &lt;strong&gt;System Auditor UI&lt;/strong&gt; to load raw CSV medical files straight into local RAM. While the clinical summaries generated by the LLM were highly detailed, the system ground to a halt under load. &lt;/p&gt;

&lt;p&gt;We proved that sending unorganized, flat text blocks directly to an LLM context window creates massive &lt;strong&gt;token bloat&lt;/strong&gt; and unacceptable latency. Round 1 exposed the problem; Round 2 was built to engineer the ultimate enterprise-tier solution.&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 The Foundation: Inside the 100M Token Engine Matrix
&lt;/h2&gt;

&lt;p&gt;To push our Round 2 architectures to their absolute limits, we generated a massive &lt;strong&gt;33-column production database matrix&lt;/strong&gt;. Real-world clinical workflows don't operate on simple text snippets. They require deeply nested, multi-layered variables. Our underlying engine ingests an incredibly rich web of features for every single record, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Clinical Classifications:&lt;/strong&gt; &lt;code&gt;disease_id&lt;/code&gt;, &lt;code&gt;disease_name&lt;/code&gt;, &lt;code&gt;icd_code&lt;/code&gt;, &lt;code&gt;category&lt;/code&gt;, &lt;code&gt;disease_type&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Symptom Progressions:&lt;/strong&gt; &lt;code&gt;symptoms&lt;/code&gt;, &lt;code&gt;early_symptoms&lt;/code&gt;, &lt;code&gt;severe_symptoms&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pathophysiology &amp;amp; Risks:&lt;/strong&gt; &lt;code&gt;causes&lt;/code&gt;, &lt;code&gt;risk_factors&lt;/code&gt;, &lt;code&gt;affected_organs&lt;/code&gt;, &lt;code&gt;body_system&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Therapeutic Protocols:&lt;/strong&gt; &lt;code&gt;complications&lt;/code&gt;, &lt;code&gt;diagnosis_method&lt;/code&gt;, &lt;code&gt;treatments&lt;/code&gt;, &lt;code&gt;prescribed_medicine&lt;/code&gt;, &lt;code&gt;medicine_classes&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prognostics &amp;amp; Demographics:&lt;/strong&gt; &lt;code&gt;prevalence&lt;/code&gt;, &lt;code&gt;mortality_rate&lt;/code&gt;, &lt;code&gt;contagious&lt;/code&gt;, &lt;code&gt;genetic&lt;/code&gt;, &lt;code&gt;chronic&lt;/code&gt;, &lt;code&gt;emergency_level&lt;/code&gt;, &lt;code&gt;age_group&lt;/code&gt;, &lt;code&gt;gender_risk&lt;/code&gt;, &lt;code&gt;prognosis&lt;/code&gt;, &lt;code&gt;recovery_time&lt;/code&gt;, &lt;code&gt;vaccine_availability&lt;/code&gt;, &lt;code&gt;specialist_required&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Validation Layer:&lt;/strong&gt; &lt;code&gt;references&lt;/code&gt; (Mapping to global authorities like the WHO Clinical Guidelines and NCBI)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📊 A Sneak Peek at the 33-Column Production Engine Data
&lt;/h3&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0m02fmh2mo18xelrrgcw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0m02fmh2mo18xelrrgcw.png" alt="db" width="795" height="64"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ The Round 2 Tri-Pipeline Architectural Showdown
&lt;/h2&gt;

&lt;p&gt;We built a state-of-the-art &lt;strong&gt;Unified Cross-Examiner Dashboard&lt;/strong&gt; to watch these three generations of retrieval engines battle side-by-side in real-time. We threw a single query at all of them live on stage: &lt;code&gt;"Asthma therapeutic protocols"&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Here is the exact breakdown of how each pipeline stacked up under the hood. 🧠⚡
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp3a02xc4fskr0qd1tjux.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp3a02xc4fskr0qd1tjux.png" alt="archi" width="799" height="436"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  🔴 Pipeline 1: The Raw Brute-Force Framework (Pandas)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Strategy:&lt;/strong&gt; Our baseline Round 1 architecture. When a query hits the terminal, it allocates local memory and loads the &lt;em&gt;entire&lt;/em&gt; 33-column, 100M token dataset into RAM using Pandas, executing a linear string search across every variable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Bottleneck:&lt;/strong&gt; Extreme token hemorrhage. Because it returns raw, unorganized row text blocks across dozens of columns, it floods the LLM context window with immense waste data.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Telemetry Verdict:&lt;/strong&gt; * ⏱️ &lt;strong&gt;Execution Latency:&lt;/strong&gt; &lt;code&gt;6.37s&lt;/code&gt; (Dangerous for a live doctor standing in an emergency room!)

&lt;ul&gt;
&lt;li&gt;🏷️ &lt;strong&gt;Token Cost Bracket:&lt;/strong&gt; &lt;strong&gt;HIGH&lt;/strong&gt; (&lt;code&gt;3,267+ tokens&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fguel8o85yf777ht5i331.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fguel8o85yf777ht5i331.jpg" alt="p1" width="800" height="415"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  🟡 Pipeline 2: Vector Semantic Indexing (ChromaDB)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Strategy:&lt;/strong&gt; Moving into vector math. We implemented &lt;code&gt;SentenceTransformer("all-MiniLM-L6-v2")&lt;/code&gt; to convert the dense 33-column clinical text rows into 384-dimensional vector embeddings, saving them into a localized, persistent &lt;strong&gt;ChromaDB database&lt;/strong&gt; (&lt;code&gt;chroma_db_100M&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Bottleneck:&lt;/strong&gt; While speed increased drastically, we hit &lt;strong&gt;Context Loss&lt;/strong&gt;. Vector search squashes text into abstract mathematical distances, stripping away hyper-specific relational links (like losing the rigid connection between a specific &lt;code&gt;prescribed_medicine&lt;/code&gt; and its corresponding &lt;code&gt;severe_symptoms&lt;/code&gt; stage during high-dimensional chunk splitting).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Telemetry Verdict:&lt;/strong&gt; * ⏱️ &lt;strong&gt;Execution Latency:&lt;/strong&gt; &lt;code&gt;1.45s&lt;/code&gt; (Much faster!)

&lt;ul&gt;
&lt;li&gt;📉 &lt;strong&gt;BERTScore F1:&lt;/strong&gt; &lt;code&gt;0.8102&lt;/code&gt; (Suffered from critical clinical omission errors due to vector flattening).&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fex7xw5u6vx5yiexoyywp.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fex7xw5u6vx5yiexoyywp.jpg" alt="p2" width="800" height="421"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  🔵 Pipeline 3: The Med AI Enterprise GraphRAG Framework 🏆
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Strategy:&lt;/strong&gt; The ultimate architectural breakthrough of Round 2. Instead of flat text row scans or abstract vector coordinates, we simulated an enterprise graph database network natively in memory. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;How it Works:&lt;/strong&gt; The complex 33-column medical records are transformed into explicit topological networks: &lt;strong&gt;Vertices&lt;/strong&gt; (Nodes representing concrete entities like &lt;em&gt;Diseases&lt;/em&gt;, &lt;em&gt;SymptomClusters&lt;/em&gt;, and &lt;em&gt;TherapeuticProtocols&lt;/em&gt;) and &lt;strong&gt;Edges&lt;/strong&gt; (The direct relationships connecting them, like &lt;em&gt;MANIFESTS_AS&lt;/em&gt; or &lt;em&gt;MANAGED_BY&lt;/em&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Magic:&lt;/strong&gt; When a query runs, the system performs a localized graph traversal, extracting an isolated sub-graph topology map. The LLM receives zero fluff—no preamble, no introductory waste text—only pristine, pre-linked relational facts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Telemetry Verdict:&lt;/strong&gt;

&lt;ul&gt;
&lt;li&gt;⏱️ &lt;strong&gt;Execution Latency:&lt;/strong&gt; &lt;strong&gt;0.82s&lt;/strong&gt; (Sub-second hyper-speed! ⚡)&lt;/li&gt;
&lt;li&gt;🏷️ &lt;strong&gt;Token Cost Bracket:&lt;/strong&gt; &lt;strong&gt;LOW&lt;/strong&gt; (&lt;code&gt;450 tokens max&lt;/code&gt; due to zero waste data!)&lt;/li&gt;
&lt;li&gt;🎯 &lt;strong&gt;LLM-as-a-Judge Score:&lt;/strong&gt; &lt;code&gt;98% Relevance&lt;/code&gt; (Absolute structural precision).&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;




&lt;h2&gt;
  
  
  &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhjdq3gxzt8kfbmdsul3x.jpg" alt="p3" width="800" height="415"&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  📈 The Final Dashboard Audit Matrix
&lt;/h2&gt;

&lt;p&gt;When we click &lt;strong&gt;LAUNCH SYNCHRONIZED SCANS&lt;/strong&gt; on our master evaluation console, the systems run side-by-side. The telemetry results are undeniable:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Evaluation Metric&lt;/th&gt;
&lt;th&gt;Pipeline 1 (Brute Force)&lt;/th&gt;
&lt;th&gt;Pipeline 2 (Vector RAG)&lt;/th&gt;
&lt;th&gt;Pipeline 3 (GraphRAG)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Execution Latency&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;6.37s&lt;/code&gt; 🔴&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;1.45s&lt;/code&gt; 🟡&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;0.82s&lt;/strong&gt; 🟢&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Token Efficiency&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Bloated (&lt;code&gt;3,267+ tk&lt;/code&gt;)&lt;/td&gt;
&lt;td&gt;Moderate (&lt;code&gt;1,150 tk&lt;/code&gt;)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Ultra-Lean (450 tk)&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Compute Cost&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;High ($$$)&lt;/td&gt;
&lt;td&gt;Medium ($$)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Fractions of a Micro-Cent ($)&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;BERTScore F1&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;0.9684&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;0.8102&lt;/code&gt; (Context Drop)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;0.9912 (Max Accuracy)&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LLM-as-a-Judge&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;94% Relevance&lt;/td&gt;
&lt;td&gt;76% (Hallucination Risk)&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;98% Structural Precision&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F01ta82pqkmct3n67ebcc.jpg" alt="dash" width="799" height="398"&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  🚀 The Road to Production: Taking Med AI Public
&lt;/h2&gt;

&lt;p&gt;. &lt;strong&gt;Enterprise Graph Scale:&lt;/strong&gt; Routing our Pipeline 3 engine away from memory simulations directly into a live distributed &lt;strong&gt;TigerGraph Cloud instance (&lt;code&gt;tgcloud.io&lt;/code&gt;)&lt;/strong&gt; via secure REST endpoints&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fog16xv62c50izpsedjk3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fog16xv62c50izpsedjk3.png" alt="graph" width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 The Takeaway
&lt;/h2&gt;

&lt;p&gt;Building high-scale medical AI isn't about throwing the biggest, most expensive model at a problem. It's about &lt;strong&gt;Data Architecture&lt;/strong&gt;. By structuring our dense, 33-column dataset into an explicit knowledge network, &lt;strong&gt;GraphRAG allowed us to slash latency by 87% and slice token overhead to a fraction of the cost, all while increasing accuracy.&lt;/strong&gt; That is how we build the future of health-tech. 🩺💎🌐&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp0vn6ilzdz6a3spawiwm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp0vn6ilzdz6a3spawiwm.png" alt="bench" width="799" height="337"&gt;&lt;/a&gt;---&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdzarmb69kvll09fxkv9z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdzarmb69kvll09fxkv9z.png" alt="Token" width="800" height="307"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🔗 Project Ecosystem &amp;amp; Codebase
&lt;/h2&gt;

&lt;p&gt;Want to see how this was built under the hood or review our historical development iterations? Explore the official Med AI ecosystem across these links:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📖 &lt;strong&gt;&lt;a href="https://dev.to/likhitha_m_4ace61f190b3f8/tiger-graph-hackathon-2p1i"&gt;Read the Round 1 Core Ideation Blog Here&lt;/a&gt;&lt;/strong&gt; — &lt;em&gt;A retrospective look at how our initial architecture was born.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;💻 &lt;strong&gt;&lt;a href="https://github.com/Lochan-Visnu/GraphRAG-Hackathon-MED-AI" rel="noopener noreferrer"&gt;Explore the Med AI Source Repository on GitHub&lt;/a&gt;&lt;/strong&gt; — &lt;em&gt;Clone the codebase, check out our implementation history, and view the configurations.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;📂 &lt;strong&gt;&lt;a href="https://drive.google.com/drive/folders/1uCRqP47jVks6gT2bvpXD5hVzICacyN3Z?usp=drive_link" rel="noopener noreferrer"&gt;Access the Raw 100M Token Engine Dataset via Google Drive&lt;/a&gt;&lt;/strong&gt; — &lt;em&gt;Direct download link to access the underlying 33-column production database engine.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;🤝 &lt;strong&gt;&lt;a href="https://www.linkedin.com/in/lochan-visnu-cheluvaiaghal-974b5b286/" rel="noopener noreferrer"&gt;Connect with Me on LinkedIn&lt;/a&gt;&lt;/strong&gt; — &lt;em&gt;Let's network, discuss health-tech scaling, and collaborate on enterprise AI systems.&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  '''
&lt;/h2&gt;

</description>
      <category>medical</category>
      <category>graphrag</category>
      <category>ai</category>
      <category>devchallenge</category>
    </item>
  </channel>
</rss>
