EveryDev.ai
Subscribe
Home
Tools

3,505+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. CORTEX RAG
    CORTEX RAG icon

    CORTEX RAG

    Retrieval-Augmented Generation

    A local, open-source RAG system that retrieves, cross-checks, and cites answers from your documents using 9 advanced retrieval techniques — no API key or cloud upload required.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT license. Self-host locally with no API key or cloud dependency.

    Engagement

    Available On

    Windows
    Web
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Retrieval-Augmented GenerationLocal InferenceInformation Synthesis

    Alternatives

    Local Deep ResearchLEANNBlinko
    Developer
    SaiAkhil066N Sai Akhil builds open-source AI tools focused on local, pr…

    Listed Aug 2026

    About CORTEX RAG

    CORTEX RAG is an open-source, fully local retrieval-augmented generation (RAG) system built by N Sai Akhil. It runs entirely on your machine using Ollama for LLM inference, requiring no API key, no cloud upload, and no subscription. The project is licensed under MIT and has accumulated over 1,700 GitHub stars since its creation in January 2025.

    What It Is

    CORTEX RAG is a document question-answering engine that combines nine distinct retrieval and reasoning techniques into a single pipeline. Users upload a PDF, DOCX, TXT, or Markdown file, ask a question in natural language, and receive a cited answer generated entirely on local hardware. The system is designed for both individual developers and enterprise teams that need private, permission-aware document retrieval without sending data to external services.

    Nine-Layer Retrieval Pipeline

    The core differentiator is the layered pipeline that activates on every query:

    • Contextual Retrieval — An LLM prepends situating context to each chunk before indexing, so every vector carries the full document story rather than an isolated fragment.
    • RAG-Fusion + RRF — Generates multiple query variants, retrieves independently for each, then merges ranked lists via Reciprocal Rank Fusion for improved recall.
    • GraphRAG — Builds a NetworkX knowledge graph over document entities to surface relational context that pure vector search misses.
    • Corrective RAG (CRAG) — An LLM grades every retrieved chunk for relevance and silently drops noise before generation.
    • Neural Reranking — A Cross-Encoder (ms-marco-MiniLM) reorders retrieval candidates by true query–passage relevance, not just embedding similarity.
    • HyDE — Generates a hypothetical answer first to expand sparse queries into a richer dense embedding space before actual retrieval.
    • Live Reasoning Panel — Streams the model's chain-of-thought <think> tokens in real time so users can watch the reasoning process.
    • Semantic Cache — A cosine-similarity cache at threshold 0.92 returns instant answers for repeated or near-duplicate queries, skipping retrieval and generation entirely.
    • Chat Memory — Full multi-turn conversation history flows into every generation call for natural follow-up questions.

    Tech Stack

    The project is built on a well-defined open-source stack:

    LayerTechnology
    UIStreamlit 1.30
    LLM inferenceOllama (local)
    Vector storeFAISS
    Sparse retrievalBM25 (rank-bm25)
    Knowledge graphNetworkX
    Neural rerankersentence-transformers CrossEncoder
    Embeddingsnomic-embed-text via Ollama
    RAG orchestrationLangChain
    Document loadingPyMuPDF, Docx2txt, TextLoader

    Model Flexibility

    The sidebar model selector auto-populates from locally installed Ollama models. The README lists tested models including llama3.1:8b (default), qwen2.5:7b for multilingual documents, mistral:7b for long documents, llama3.1:70b for highest quality, and qwen2.5-coder:7b for code and technical documentation. No configuration change is needed when swapping models.

    Deployment Options

    CORTEX RAG supports three deployment paths: a direct Python/Streamlit run (python -m streamlit run app.py), a Docker Compose setup with Ollama on the host, and a fully containerized Docker option with Ollama running as a separate service. The README also references an enterprise landing page at cortex-rag-beta.vercel.app for organizations that want custom, production-grade RAG systems built on the same nine-layer pipeline.

    Current Status

    The repository was created in January 2025 and last pushed in June 2026, with the GitHub metadata showing 1,790 stars and 270 forks as of the latest update. The project is actively maintained under the MIT license and explicitly describes itself as free and open-source, with a community support model via GitHub Issues and Pull Requests.

    CORTEX RAG - 1

    Community Discussions

    Be the first to start a conversation about CORTEX RAG

    Share your experience with CORTEX RAG, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT license. Self-host locally with no API key or cloud dependency.

    • Full 9-layer RAG pipeline
    • Local LLM inference via Ollama
    • PDF, DOCX, TXT, Markdown support
    • Docker deployment
    • MIT license — free to use, modify, and distribute

    Capabilities

    Key Features

    • 9-layer RAG pipeline
    • Contextual Retrieval with LLM chunk enrichment
    • RAG-Fusion with Reciprocal Rank Fusion
    • GraphRAG with NetworkX knowledge graph
    • Corrective RAG (CRAG) chunk grading
    • Neural reranking with Cross-Encoder
    • HyDE hypothetical document embeddings
    • Live reasoning panel with chain-of-thought streaming
    • Semantic cache for instant repeat answers
    • Multi-turn chat memory
    • Fully local inference via Ollama
    • FAISS vector store
    • BM25 sparse retrieval
    • PDF, DOCX, TXT, and Markdown support
    • Docker Compose deployment
    • Model-agnostic Ollama model selector
    • No API key or cloud upload required

    Integrations

    Ollama
    FAISS
    BM25 (rank-bm25)
    NetworkX
    LangChain
    sentence-transformers
    Streamlit
    PyMuPDF
    Docx2txt
    nomic-embed-text
    Docker
    llama3.1
    qwen2.5
    mistral
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate CORTEX RAG and help others make informed decisions.

    Developer

    SaiAkhil066

    N Sai Akhil builds open-source AI tools focused on local, privacy-preserving retrieval-augmented generation. The CORTEX RAG project combines nine advanced retrieval techniques into a single pipeline that runs entirely on local hardware. The project is MIT-licensed and also offers custom enterprise RAG deployments for organizations needing production-grade document intelligence.

    Read more about SaiAkhil066
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Local Deep Research icon

    Local Deep Research

    An open-source, privacy-first AI research assistant that runs locally, supports 20+ search engines and multiple LLMs, and synthesizes findings into cited reports.

    LEANN icon

    LEANN

    A low-storage vector index that enables private, on-device RAG on millions of documents using 97% less storage than traditional vector databases.

    Blinko icon

    Blinko

    An open-source, self-hosted AI-powered card note-taking app that lets you quickly capture, organize, and retrieve ideas using natural language search via RAG technology.

    Browse all tools

    Related Topics

    Retrieval-Augmented Generation

    RAG Systems that enhance LLM outputs by retrieving relevant information from external knowledge bases, combining the power of generative AI with information retrieval for more accurate and contextual responses.

    112 tools

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    160 tools

    Information Synthesis

    Tools that analyze and summarize complex information.

    57 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions