Projects using LangChain in MumbaiProjects using LangChain in MumbaiMost AI research tools are just a chatbot with a search button. I built something different.
Every time you ask an AI to research something, you're getting one model, one pass, no quality check. It writes confidently, cites poorly, and you have no idea if what it produced is actually accurate. For anyone making real decisions from AI-generated research, that's a silent risk most people ignore.
The problem gets worse at scale the longer and more complex the question, the more a single model hallucinates, misses sources, and loses structure. There's no one checking its work.
So I built ResearchOS a 5-agent pipeline where each agent has one job. A Supervisor breaks down your question. A Researcher runs parallel searches across 22+ sources. An Analyst extracts data and auto-generates charts. A Writer synthesises a cited report. A Critic fact-checks it and sends it back for revision if anything is wrong. The loop runs up to 3 times before the report is approved.
One question in. A full cited report with charts and PDF export in under 10 minutes.
I tested it live by watching the Critic catch a missing citation mid-run and send the Writer back to fix it before approval. That's the part that makes this actually usable for real work.
Built on LangGraph, Groq, Tavily, ChromaDB and runs entirely on free tiers. HybridAlpha (Hybrid RAG) :
One tool digs into actual SEC filings, not just static documents. From EDGAR, it grabs 10, Ks and 10, Qs fresh each time. Sections like MD&A or Risk Factors get split out by name during parsing. Storage happens two ways at once: words go to ChromaDB, numbers land in SQLite. When a question arrives, the router decides, tone, driven, number, heavy, or both. Depending on that choice, the query moves to one place, sometimes both. Context flows forward only after sorting is done. Answers come from Llama 3.3 70B via Groq, always tagged with sources. Each output ties back to where the data lived.
Start by asking, What risks did Apple highlight regarding AI rivals? Out comes exact quotes pulled straight from official documents.