Inspiration

The inspiration for Aether Health AI stemmed from a critical flaw in modern digital healthcare: it often creates more anxiety than it cures. We observed that when people search for symptoms online, they fall into the trap of "cyberchondria," misinterpreting mild issues as fatal diseases due to uncurated search results.

Beyond the screen, we saw systemic global crises: dangerous medical errors caused by illegible doctor handwriting, unmonitored local water safety issues, and the alarming rise of counterfeit medicines (the WHO estimates that 1 in 10 medical products in developing nations are substandard or falsified).

We wanted to build a platform that didn't feel clinical or sterile. We drew inspiration from the Five Elements of Nature (Fire, Water, Air, Earth, and Space) to create a calming, holistic, and culturally inclusive framework. Our goal was to harmonize advanced AI with empathetic design, replacing panic with verified, accessible support.

What it does

Aether Health is a unified healthcare companion that maps specific medical challenges to the five elements:

🔥 Fire (VitalScan): An empathetic symptom checker using sentiment analysis to detect user panic. It provides probability-based assessments using Retrieval-Augmented Generation (RAG) grounded in WHO guidelines.

💧 Water (HydroGuard): A community-driven map and citizen science tool for tracking local water safety and reporting contamination.

🌬️ Air (ClearScript): An AI prescription reader that deciphers notoriously messy handwriting, autocorrects drug names, and sets automated medication reminders.

🌍 Earth (TrueMeds): A visual counterfeit defense system that analyzes medicine packaging and pill characteristics against a "Golden Dataset" of authentic medications.

🌌 Space (LifeLoop): The holistic intelligence layer that translates complex medical jargon into local dialects and aggregates all health data for a personalized overview.

How we built it

We built Aether Health with a focus on seamless user experience and robust, responsible AI.

Frontend & The "Zero-Panic" UI: We utilized React 18 and Tailwind CSS with a Glassmorphism UI. By implementing Framer Motion, we ensured every interaction felt organic and smooth. Breaking away from the harsh "hospital-white" aesthetic was a core design philosophy to lower the user's cognitive load.

The AI Engine & Mathematical Grounding: The core of the platform is powered by the Google Gemini API (1.5/2.5 Pro & Flash). To ensure medical safety and prevent hallucinations, we implemented a highly structured RAG pipeline and threshold logic.

Contextual Retrieval (Fire): We embed the user's query and the WHO document chunks into high-dimensional vectors. We compute the cosine similarity between the symptom query vector $\mathbf{q}$ and the document vector $\mathbf{d}$ to fetch the most relevant medical context:

$$\text{similarity}(\mathbf{q}, \mathbf{d}) = \frac{\mathbf{q} \cdot \mathbf{d}}{|\mathbf{q}| |\mathbf{d}|} = \frac{\sum_{i=1}^{n} q_i d_i}{\sqrt{\sum_{i=1}^{n} q_i^2} \sqrt{\sum_{i=1}^{n} d_i^2}}$$

Probabilistic Escalation Logic: The system evaluates the probability of a medical condition $C$ given a set of user symptoms $S$. To prevent dangerous AI "guessing," we established a strict confidence threshold $\tau = 0.85$. If the model's confidence falls below this threshold, it triggers an immediate escalation protocol:

$$P(C|S) = \frac{P(S|C)P(C)}{P(S)}$$

If $\max P(C|S) < \tau$, then output = ESCALATE_TO_HUMAN.

Multimodal Vision Pipeline (Air & Earth): We heavily leveraged Gemini's multimodal capabilities to perform complex OCR on messy prescriptions and compare the structural features of uploaded pill images against our dataset to classify authenticity.

Challenges we ran into

Preventing AI Hallucinations: Using LLMs for medical advice is inherently risky. We had to carefully tune our vector database chunking strategy and strictly enforce the $\tau$ threshold logic mentioned above to ensure the AI acts as a librarian of facts, not a creative diagnostician.

Decoding Cursive Scripts: Traditional OCR fails entirely on medical "chicken scratch." We had to meticulously prompt-tune the Gemini Vision API to not only read the text but dynamically evaluate the $N$-gram probabilities of pharmacological terms to autocorrect misspelled drug names based on surrounding context.

Balancing Tone and Accuracy: We used a sentiment analysis scoring mechanism to adjust the AI's response. It was difficult to make the bot sound calming without accidentally downplaying severe symptoms (like chest pain), which required complex rule-based overrides.

Accomplishments that we're proud of

Element Tick-Mark Traceability: Our Explainable AI (XAI) feature visually cites the exact WHO data source chunk that led to a conclusion, building immense user trust.

Multimodal Cohesion: Seamlessly blending text processing, sentiment scoring, and advanced image recognition into a single user journey without UI lag.

Empathetic Engineering: Successfully creating an interface that actually helps lower a user's heart rate while dealing with high-stress medical queries.

What we learned

Building Aether Health taught us the profound difference between "accurate AI" and "empathetic AI." We learned that how health information is delivered is just as important as the information itself. Technically, we gained deep expertise in implementing robust RAG pipelines for specialized, high-stakes domains and pushing the boundaries of what multimodal LLMs can achieve in complex optical character recognition tasks.

What's next for Aether Health AI

Expanding TrueMeds: Partnering with global pharmaceutical companies to expand our dataset of verified medicine imagery to combat the global counterfeit crisis at scale.

Government API Integration: Connecting HydroGuard directly into municipal water databases to automate the ticket generation process for contamination reports.

Wearable Sync: Integrating smartwatch biometric data (heart rate, SpO2) into Space (LifeLoop) to give the AI richer, continuous context before it provides lifestyle recommendations.

Built With

Share this project:

Updates