nowfound

Alternatives

Products that do what Human-like RAG — no vectors does

Not all improvements come from adding complexity — sometimes it's about removing it. PageIndex takes a different approach to RAG. Instead of relying on vector databases or artificial chunking, it builds a hierarchical tree structure from documents and uses reasoning-based tree search to locate the most relevant sections. This mirrors how humans actually read: navigating through sections and context rather than relying on embedding similarity. As a result, the retrieval feels transparent, structured, and explainable. It moves RAG away from approximate "semantic vibes" and toward explicit…

  1. 1PF

    In this blog, we introduce a pure JSON index to enable reasoning-based RAG without relying on any Vector DBs. Any feedback is welcome!

    Oct 2025 · vectifyai.notion.site

  2. 2IC

    RAG pipelines have become bloated: embeddings, vector DBs, rerankers, and ad-hoc pipelines everywhere. Projects like Claude Code showed a simpler path: In-Context Retrieval — letting the LLM reason directly over context for retrieval instead of outsourcing search to external infrastructure. PageIndex takes that one step further with In-Context Indexing. If retrieval happens in-context, the index should live there too. Each document is transformed into a hierarchical, human-readable tree structure (like a table-of-contents tree index) inside the model's context window. The LLM reads the…

    Oct 2025 · github.com

  3. 3
    Vectorize246

    Build RAG pipelines that are optimized for your data.

    2024

  4. 4

    Dive deep into AI Retrieval Augmented Generation (RAG)

    2024

  5. 5

    Give users powerful AI search & chat for your site/docs 🔎✨

    2024

  6. 6

    Multimodal document parser designed for RAG systems

    2025

  7. 7

    The Stripe Checkout of RAG. Fast, scalable, effortless.

    2025

  8. 8
    Locus96

    AI-powered CTRL + F for quick document search on Chrome

    2023

  9. 9
    RAGstack111

    Deploy a private ChatGPT alternative hosted within your VPC

    2023

  10. 10AF

    Hi HN, We’ve been building [memU](https://github.com/NevaMind-AI/memU), an open-source memory framework for AI agents that supports both classic RAG and LLM-based direct file reading. RAG has become the default in LLM systems, but many of its failures don’t come from the model — they come from the retrieval assumptions. Embedding-based retrieval is fundamentally an approximation over semantic similarity. It works well for fuzzy recall, but it often breaks when relevance ≠ correctness, which is common in real systems. From a retrieval perspective, RAG struggles with: -…

    Jan 2026 · github.com

  11. 11GA

    Hi HN, I have been working with regulation-heavy documents lately, and one thing kept bothering me. Flat RAG pipelines often fail to retrieve related articles together, even when they are clearly connected through references, definitions, or clauses. After trying several RAG setups, I subjectively felt that GraphRAG was a better mental model for this kind of data. The Microsoft GraphRAG paper and reference implementation were helpful starting points. However, in practice, I found one recurring friction point: graph storage and vector indexing are usually handled by separate systems, which…

    Jan 2026 · github.com

  12. 12RI

    Got tired of wiring up vector stores, embedding models, and chunking logic every time I needed RAG. So I built piragi. from piragi import Ragi kb = Ragi(\["./docs", "./code/\*\*/\*.py", "https://api.example.com/docs"\]) answer = kb.ask("How do I deploy this?") That's the entire setup. No API keys required - runs on Ollama + sentence-transformers locally. What it does: - All formats - PDF, Word, Excel, Markdown, code, URLs, images, audio - Auto-updates - watches sources, refreshes in background, zero query latency - Citations - every answer includes sources…

    Dec 2025 · pypi.org

  13. 13
    aoyo.ai126

    The new AI search

    2024

  14. 14BA

    Made this in a free evening. Index an permissive license translation of the Bible (WEB) into a RAG database to allow returning passages of similar semantic meaning. Lots of fun. For example, "more money more problems" returns Ecclesiastes 5:9-13 which, I'll just say, is spot on.. "Moreover the profit of the earth is for all. The king profits from the field. He who loves silver shall not be satisfied with silver, nor he who loves abundance, with increase. This also is vanity. When goods increase, those who eat them are increased; and what advantage is there to its owner, except to feast on…

    Jun 2026 · crosscanon.com

  15. 15HK

    Built this as a toy project to understand knowledge graphs by tackling a real problem: traditional RAG fails badly on legal documents because it misses interconnections between sections. The system actually combines both approaches on every query - gets semantic matches via TF-IDF, retrieves structural relationships from Neo4j, then feeds both contexts to OpenAI for comprehensive answers. Used the Indian Income Tax Act as test data since legal documents have natural graph structures. Queries like "What sections reference Section 80C?" get both the reference network AND content explanations.…

    2025 · github.com

  16. 16AM

    Most RAG setups fail because they treat memory like a static filing cabinet. When every transient bug fix or abandoned rule is stored forever, the context window eventually chokes on noise, spiking token costs and degrading the agent's reasoning. This implementation experiments with a biological approach by using the Ebbinghaus forgetting curve to manage context as a living substrate. Memories are assigned a "strength" score where each recall reinforces the data and flattens its decay curve (spaced repetition), while unused data eventually hits a threshold and is pruned. To solve the…

    Apr 2026 · github.com

  17. 17SA

    Hi HN, I’m Tullie, founder of Shaped. Previously, I was a researcher at Meta AI, worked on ranking for Instagram Reels, and was a contributor to PyTorch Lightning. We built ShapedQL because we noticed that while retrieval (finding 1,000 items) has been commoditized by vector DBs, ranking (finding the best 10 items) is still an infrastructure problem. To build a decent for you feed or a RAG system with long-term memory, you usually have to put together a vector DB (Pinecone/Milvus), a feature store (Redis), an inference service, and thousands of lines of Python to handle business logic…

    Jan 2026 · playground.shaped.ai

  18. 18RW

    RAG Web UI is designed to be the most straightforward way to build your own knowledge-based Q&A system. While other RAG (Retrieval-Augmented Generation) projects might be complex, we focus on making it super easy to understand and use. Why It's The Most Beginner-Friendly: Simple Document Management - Just upload your documents (PDF, DOCX, Markdown, Text) - System handles all the complex processing automatically - No need to worry about document chunking or vectorization - Documents update automatically in the background Easy-to-Use Chat Interface - Ask questions in plain language - Get…

    2025 · github.com

  19. 19

    Build once. Query anywhere with portable RAG artifacts

    May 2026 · ragbucket.vercel.app

  20. 20AW

    I've been presenting at local meetups about Context Engineering, RAG, Skills, etc.. I even have a vbrownbag coming up on LinkedIn about this topic so I figured I would make a basic example that uses bedrock so I can use it in my talks or vbrownbags. Hopefully it's useful.

    Apr 2026 · github.com

  21. 21RC
  22. 22

    Smarter RAG with Agentic Retrieval & Context-Aware MCP

    Sep 2025

  23. 23

    PDF query tool using retrieval augmented generation

    May 2026 · github.com

  24. 24

    Grounding your AI in your own data, with absolute precision

    Jul 2026 · rag.webygraphy.co.uk

Ranked by how close each launch is in meaning, then by votes. Refine with a description →