惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Bio-Neighbor Treatment Auditor** — an open-source, on-dev...
Andy Tribole · 2026-05-12 · via DEV Community

This is a submission for the Gemma 4 Challenge: Build with Gemma 4

What I Built

Bio-Neighbor Treatment Auditor — an open-source, on-device "second opinion" for cancer patients.

A cancer diagnosis arrives faster than a person can process it. Within a few visits the patient has a stage, a subtype, three drugs they've never heard of, and a calendar of infusions. The honest second opinion looks like this: open seven tabs, read NCI PDQ, search ClinicalTrials.gov, cross-reference DDInter for drug interactions, check ChEMBL for mechanism overlap, look up OpenFDA FAERS for what other patients reported, normalize names through RxNorm because the hospital wrote "Taxol" and the trial database says "paclitaxel" — then synthesize all of it into questions for Monday's oncology appointment.

Most patients can't do this. And pasting a treatment plan into a cloud chatbot is a privacy non-starter — this is the most sensitive data a person owns.

Bio-Neighbor turns that Sunday-night research session into a ~90-second audit on the patient's own laptop. Enter cancer type, subtype, stage, drugs, treatments, symptoms — a multi-pass pipeline pulls from six public medical databases, runs four deterministic safety lookups, then hands the structured findings to Gemma 4 running locally via Ollama. The output is a self-contained, paginated PDF with every NCT ID, every PDQ URL, and every data-source citation listed in a References section — enough detail that a clinician could reproduce the audit by hand.

Sources synthesized:

  • NCI PDQ — standard-of-care guideline text from cancer.gov
  • ClinicalTrials.gov — recruiting and completed trials, per-modality and per-drug
  • DDInter — pairwise drug-drug interactions (236k pairs, Major / Moderate / Minor)
  • ChEMBL — flags when two drugs hit the same gene (e.g., anastrozole + letrozole both inhibit CYP19A1)
  • openFDA FAERS — post-market adverse-event frequencies matched against the patient's symptoms
  • RxNorm — brand→generic deduplication so the audit doesn't double-count fan-out

Everything runs locally. Ollama is hard-pinned to 127.0.0.1:11434. No cloud API key, no telemetry, no fallback to a remote LLM. The only external network traffic is the one-time download of public medical datasets — the same fetches a researcher would make from PubMed.

Runs from either a SwiftUI macOS GUI or a cross-platform Python CLI (macOS, Linux, Windows); both produce identical reports.

Research tool only — not medical advice.

Demo

Example audit (PDF): treatment-audit-her2-20260507-1433.pdf

Code

GitHub logo greenrobotllc / bio-neighbor

On-device AI Treatment Auditor for cancer plans + molecular-similarity engine. Pulls evidence from NCI PDQ, ClinicalTrials.gov, DDInter, ChEMBL, and FAERS, synthesizes with local Ollama, exports as PDF. macOS GUI + cross-platform Python CLI. Research tool only — not medical advice.

BioNeighbor

BioNeighbor App Icon

BioNeighbor is an open-source, on-device cancer-research toolkit. Turn a cancer treatment plan into a citation-grounded second opinion — locally, privately, in plain language.

Treatment Auditor: synthesize six public medical databases (NCI PDQ, ClinicalTrials.gov, DDInter, ChEMBL, RxNorm, OpenFDA FAERS) into a printable PDF audit, powered by Gemma 4 running on your own machine. No cloud, no telemetry, no patient data leaves the device.

BioNeighbor also retains its original molecular-similarity engine (FAISS + RDKit + ChEMBL) — the collaborative-filtering-inspired feature the project takes its name from — for exploring "neighbor" compounds to known drugs.


Overview

BioNeighbor is an open-source cancer-research toolkit centered on an on-device AI Treatment Auditor: describe a cancer treatment plan — disease/subtype, stage, prescribed drugs, scheduled treatments, symptoms — and the system runs a multi-pass audit across public medical data sources, synthesizes the findings via a local Ollama model, and exports a printable PDF.

Evidence sources:

  • NCI

MIT licensed. One-command install: ./setup.sh.

How I Used Gemma 4

I ship with Gemma 4 26B as the default model, with E4B as a lower-RAM fallback (~9.6 GB, configurable in Settings) and 31B Dense as the recommended option for workstation-class hardware doing tougher synthesis. The same prompts and pipeline work across all three — I don't have to fork the application per device class.

Three properties of the Gemma 4 family map directly onto this problem:

1. Frontier reasoning on consumer hardware. 26B fits on a single Apple-silicon Mac with 64 GB unified memory (I develop on an M1) or a workstation with one RTX A5000-class GPU. I didn't have to trade reasoning quality for offline operation — a non-negotiable trade-off for medical synthesis.

2. The family covers the deployment spectrum. A clinic with older hardware runs the audit on E4B; a research workstation scales to 31B Dense for the hardest synthesis cases. Same prompts, same pipeline, same PDF layout.

3. Open weights are load-bearing for the offline guarantee. Closed-API models can't run on a HIPAA-firewalled hospital wing, on a plane between consultations, or in a country where uploading patient data to a US cloud is illegal. Gemma 4's open weights are the only reason this app exists.

Where Gemma sits in the pipeline:

The audit is three layers, each feeding the next:

  • Layer 1 — deterministic safety lookups (no LLM). RxNorm dedupe, DDInter pairwise interactions, ChEMBL target overlap, FAERS symptom-vs-reaction matching. These render as factual callouts above the AI prose. The LLM cannot contradict them; it can only contextualize them.
  • Layer 2 — per-source mini-summaries (Gemma 4). For each public dataset, Gemma reads the raw records and writes a short summary scoped to the patient's plan. Streams token-by-token to the macOS UI — on consumer hardware a full audit takes several minutes, which is exactly why streaming matters: the patient watches the audit assemble itself, one cited source at a time, instead of staring at a spinner.
  • Layer 3 — final synthesis pass (Gemma 4). A second call receives the deterministic findings + per-source summaries + the patient's plan and produces a 350–550 word audit organized into seven sections: standard-of-care alignment, interaction flags, mechanism interpretation, symptoms vs adverse-event profiles, trial landscape, staging implications, and questions to ask the oncology team.

This focused-context-per-source pattern is the whole reason this works on a laptop: Gemma 4 never has to ingest the entire corpus at once.

What I deliberately didn't use: no function calling, no structured-output mode, no JSON-schema coercion. Per-source and synthesis calls are plain NDJSON-streamed text-in/text-out against Ollama's /api/generate. The deterministic layer handles everything that must be machine-parseable; the synthesis prompt is engineered tightly enough that I don't need structured output for the prose.


Bio-Neighbor is MIT-licensed; medical datasets carry their own licenses (notably DDInter is CC BY-NC-SA 4.0 — non-commercial). Research tool. Not medical advice.