--- title: ARIA - AMD Biomedical Research Intelligence Assistant emoji: ๐Ÿงฌ colorFrom: blue colorTo: indigo sdk: docker pinned: false --- ... your existing README content below ... # ARIA โ€” Autonomous Research Intelligence Agent > Multi-agent biomedical literature synthesis ยท AMD Developer Hackathon 2026 > **Team Glitch Squad** โ€” Ziauddin University, Karachi, Pakistan --- ## What It Does You type a clinical research question. ARIA runs a 4-stage multi-agent pipeline that searches PubMed, synthesises evidence, scores confidence, and returns a structured report โ€” all in under 60 seconds. ## Pipeline ``` Query Architect โ†’ Literature Scout โ†’ Evidence Synthesiser โ†’ Citation Builder (Groq LLaMA-3.1) (PubMed Entrez) (Groq LLaMA-3.1) (structured refs) ``` 1. **Query Architect** โ€” generates 5 MeSH-optimised PubMed queries from your clinical question 2. **Literature Scout** โ€” fetches and deduplicates papers across all queries in parallel 3. **Evidence Synthesiser** โ€” builds a structured 6-section synthesis with inline PMID citations 4. **Citation Builder** โ€” formats references with authors, journal, year, and PMID ## Features - Real-time SSE streaming โ€” progress bar updates as each stage completes - Structured synthesis โ€” Background, Key Findings, Level of Evidence, Conflicting Evidence, Research Gaps, Clinical Implications - Evidence confidence scoring โ€” green/yellow/red badges rated by a second LLM pass - Abstract viewer โ€” click any citation to expand the full abstract inline - PDF export โ€” download a formatted report with synthesis and references ## Tech Stack | Component | Technology | |-----------|------------| | LLM | Groq LLaMA-3.1-8B-Instant | | Agent Framework | LangGraph + LangChain | | Literature Retrieval | BioPython Entrez / PubMed NCBI | | Web Framework | Flask with SSE streaming | | PDF Generation | ReportLab | | Frontend | HTML, CSS, JavaScript | | Runtime | Python 3.12, WSL2 Ubuntu 24.04 | | Roadmap | AMD MI300X + Mistral 7B | ## Setup ```bash git clone https://github.com/azlaan428/glitch-squad-biomedical-assistant.git cd glitch-squad-biomedical-assistant python3 -m venv venv source venv/bin/activate pip install -r requirements.txt export GROQ_API_KEY=your_key_here ``` ## Run ```bash ./run.sh ``` Open **http://localhost:5000** ## Disclaimer AI-generated synthesis โ€” always verify against primary sources before clinical use.