nowfound

Alternatives

Products that do what MARE does

Adaptive Retrieval Engine for Agentic Stack

  1. 1

    One API for all documents your AI agents need

    Mar 2026

  2. 2
    ShapedQL211

    The SQL engine for search, feeds, and AI agents

    Jan 2026

  3. 3

    APIs for building AI chat and search

    Feb 2026

  4. 4
    R2R135

    Deep Research Agents for Your Data, via API

    2025

  5. 5
    Manex124

    Preserve useful answers, corrections, and context as memory

    May 2026

  6. 6
    Super RAG114

    Super performant RAG pipelines for AI apps

    2024

  7. 7

    Smarter RAG with Agentic Retrieval & Context-Aware MCP

    Sep 2025

  8. 8
    Lookio51

    If NotebookLM had an API - Reliable RAG agents made easy

    Oct 2025

  9. 9TA

    In this post, we document the results of some experiments comparing vanilla Graph RAG (just a single pass of text2cypher) vs. a router agent Graph RAG approach that can call vector search tools alongside text2cypher. The routing agent uses an LLM to decide which vector search tool to call, depending on the terms identified in the question, and it works quite well. The results show that recent frontier LLMs like `gpt-4.1` and the trusty workhorse `gemini-2.0-flash` produce great quality Cypher reliably and reproducibly, with some prompt engineering to ensure that the graph schema is formatted…

    2025 · blog.kuzudb.com

  10. 10AO

    Hi HN, We built one of the largest RAG set-ups that exist toady with Usul.ai (6B tokens). We started by using langchain and llamaindex, they were able to get us to a prototype in a couple of days, but took 3 months of taking pieces apart and optimizing them to make it perform well at such large scale. We put all of these learning into an MIT licensed open-source project — Agentset. Our goal to let people get production quality RAG w/o having to understand or optimize the underlying pieces. It supports 22 file formats, agentic search, deep research, citations, and a UI out of the box.…

    Oct 2025 · github.com

  11. 11WM

    Hey HN — We're excited to share Trellis — a snowflake for unstructured data. We've built an AI engine that turns unstructured data into structured SQL-format based on the schema you define in natural language. We spent a lot of time building ML infrastructure and realized that most data warehouses and data pipelines are not designed for unstructured data (documents, PDFs, calls). While something like a Vector database and RAG are great at search tasks, they really struggle with aggregation and SQL type queries such as 1. How many emails in the past 6 months contain complaints about the…

    2024 · demo.runtrellis.com

  12. 12SQ
  13. 13MA

    Hey HN, Matusa here! A friend and I have built Memora. Memora is a vector database with built-in multistage reranking, which can significantly improve search accuracy over semantic search. It also features a proprietary embedding model tailored for RAG use cases — where there's a structural mismatch between the content stored and the query used for searching (hence why HyDE works well). Memora started because we were working on a stealth AI startup where we used an agent that would query into a vector DB, but it would take multiple tries for the agent to find what it needed (20% of the time…

    2023 · usememora.app

  14. 14PL

    How it works: - Storage uses one SQLite database file, plus a local LanceDB index of vectors. No need for a server, cloud services, or any API keys. - Retrieval is a hybrid approach using BM25 (rank-bm25) and vector-based search (sentence-transformers) combined with a co-occurrence graph of entities, using reciprocal rank fusion. The idea is to find the right memory, not the closest one. - It plugs into the agent's lifecycle via MCP: before the agent responds, relevant memories are added to its input; after each turn, decisions and new learnings are automatically recorded. No need to…

    Jun 2026 · github.com

  15. 15

    Embeddings, Semantic Search & RAG Explained

    23d ago · khayyamshah2007.blogspot.com

  16. 16VA

    Dear HN Community, I am a long time fan and first-time contributor. I just launched a developer focused semantic search platform and wanted to share it with the community. The idea is simple: upload structured or unstructured documents, select the fields you want to index and tag as metadata, and instantly get a clean search API you can use in your own app. Here is what it currently supports: - Manage your own tenants and projects - Upload .json and .txt files (support for .pdf, .docx, .xlsx, .yml, etc. coming soon) - Expose 3 APIs: search, upload document (embeddings), and delete document -…

    2025 · aisearch.vpuna.com

  17. 17SF

    Hey HN! We've just open-sourced Semble, a fast and accurate code search library built for agents. We're also releasing potion-code-16M, a small code-specialized static embedding model that powers it. Most embedding-based code search methods are either too slow to index on demand or need GPU infrastructure, while grep-style retrieval methods often cannot find the relevant content. Semble combines the speed and quality benefits of both, so agents waste less time and fewer tokens exploring. Main features: - Fast: indexes a full codebase in ~250 ms and answers queries in ~1.5 ms, all on CPU…

    Apr 2026 · github.com

  18. 18IM

    When your embedding provider is good, but could be better for your use-case.

    2024 · zoplabs.com

  19. 19SV

    Hi HN, I'm Daniel from Superlinked! We have built an open-source framework that improves vector search relevance and usefulness by combining structured metadata with unstructured data in your embeddings. We included self-hostable API server that sits between your data sources and vector database. Docs: https://docs.superlinked.com/ We're launching our cloud offering soon where you can use Superlinked to orchestrate high-performance retrieval for RAG, Search & Recommendation apps in your own cloud. Looking for feedback and happy to answer questions!

    2024 · github.com

  20. 20MM

    Hi HN, we're Arnav and Adi, and we're building DataBridge - a multi-modal database built from the ground up with AI use cases in mind. We recently launched support for ColPali-style image embeddings and late-interaction retrieval. We've implemented a hamming distance version of retrieval which helps this approach scale significantly more when compared with the regular late-interaction similarity scoring. These embeddings provide a significantly better retrieval accuracy, with ColQwen achieving around an 89% average score on the ViDoRe benchmark, compared to around 67% for traditional parsing…

    2025 · github.com

  21. 21SE

    Tired of ads and misinformation clogging up your search results when you just want to see the science? That's why we built Consensus, a new search engine that uses Large Language Models to surface findings straight from scientific research for any question. If you like the product, please support our launch on Product Hunt today: https://www.producthunt.com/posts/consensus-2

    2022 · consensus.app

  22. 22SA

    I built Syne because I was tired of AI assistants that forget everything after each conversation. Syne is a self-hosted AI agent framework where memory is a first-class citizen — stored as semantic vectors in PostgreSQL, searchable across millions of entries, and persistent forever. Key features: - Unlimited persistent memory with semantic search (pgvector) - Anti-hallucination: only stores user-confirmed facts, auto-deduplicates - Self-evolving: creates new abilities at runtime without restart - Multi-model: switch between Gemini, ChatGPT, Claude mid-conversation - True $0/month setup:…

    Feb 2026

  23. 23HO

    Hey HN, It’s Vineeth from Plastic Labs. We've been building Honcho, an open-source memory library for stateful AI agents. Most memory systems are just vector search—store facts, retrieve facts, stuff into context. We took a different approach: memory as reasoning. (We talk about this a lot on our blog) We built Neuromancer, a model trained specifically for AI-native memory. Instead of naive fact extraction, Neuromancer does formal logical reasoning over conversations to build representations that evolve over time. Its both cheap ( $2/M tokens ingestion, unlimited retrieval), token…

    Jan 2026 · github.com

  24. 24LS

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