EveryDev.ai
Subscribe
Home
Tools

3,215+ 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. LocalGPT
    LocalGPT icon

    LocalGPT

    Retrieval-Augmented Generation

    A fully private, on-premise document intelligence platform that lets you chat with your documents using local AI models, with no data ever leaving your machine.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Self-host on your own hardware.

    Engagement

    Available On

    Web
    API
    CLI
    Linux
    macOS

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Retrieval-Augmented GenerationLocal InferenceDocument Management

    Alternatives

    AnythingLLMReductomnemo
    Developer
    PromtEngineerPromtEngineer builds open-source AI tools focused on local,…

    Listed Jul 2026

    About LocalGPT

    LocalGPT is an open-source, fully private document intelligence platform built by PromtEngineer, licensed under MIT and hosted on GitHub with over 22,000 stars. It lets users ask questions, summarize, and extract insights from their own documents using local AI models—no data ever leaves the device. The project was created in May 2023 and remains actively maintained, with the latest push recorded in July 2026.

    What It Is

    LocalGPT is a self-hosted RAG (Retrieval-Augmented Generation) system that runs entirely on your own hardware. Unlike cloud-based document Q&A tools, it routes all inference through locally running models via Ollama, keeping sensitive documents completely private. It goes beyond basic RAG with a hybrid search engine that blends semantic vector search, BM25 keyword matching, and Late Chunking for long-context precision. A smart router automatically decides whether to use RAG or direct LLM answering for each query, and an independent verification pass adds an extra accuracy layer.

    Architecture and Pipeline

    LocalGPT is built with a modular, four-service architecture managed by a single launcher script:

    • Ollama Server (port 11434): handles local AI model serving
    • RAG API Server (port 8001): document processing and retrieval
    • Backend Server (port 8000): session management and REST API endpoints
    • Frontend Server (port 3000): React/Next.js web interface

    The retrieval pipeline supports two modes: a production-ready default pipeline with hybrid search, AI reranking (ColBERT), query decomposition, contextual enrichment, and answer verification; and a fast pipeline that strips overhead for speed-optimized use cases. The vector store is LanceDB, with BM25 handled separately. SQLite backs session and chat history storage.

    Key Capabilities

    • Hybrid search: combines dense vector search (weight 0.7) and BM25 sparse search (weight 0.3) with configurable reranking via ColBERT or BGE models
    • Contextual enrichment: AI-generated context added to chunks at index time, inspired by Anthropic's Contextual Retrieval approach
    • Query decomposition: complex queries are broken into sub-questions and answers composed back together
    • Semantic caching: TTL-based cache with similarity matching for faster repeated queries
    • Answer verification: a separate verification model pass checks generated answers for accuracy
    • Multi-format document support: PDF, DOCX, TXT, Markdown (PDF fully supported; others in progress)
    • RESTful API: complete programmatic access for building custom RAG applications
    • Streaming responses: real-time chat output via streaming endpoints
    • Hardware flexibility: supports CUDA, CPU, Intel Gaudi HPU, and Apple MPS backends

    Deployment and Setup

    LocalGPT offers three installation paths. Docker deployment is the simplest: clone the repo, install Ollama locally, pull models (qwen3:0.6b and qwen3:8b are recommended), and run the provided shell script. Direct development setup uses Python 3.8+ and Node.js 16+, with run_system.py orchestrating all four services. Manual component startup is also supported for fine-grained control. The README notes that installation is currently tested primarily on macOS, with Ubuntu/Debian and Windows instructions provided. System requirements call for 8 GB RAM minimum, with 16 GB recommended.

    Update: LocalGPT v2 and Active Development

    The repository's localgpt-v2 branch represents a significant architectural upgrade over the original version, introducing the hybrid search engine, smart routing, contextual enrichment, Late Chunking, ColBERT reranking, and the multi-service launcher. The README instructs users to clone the localgpt-v2 branch before it is merged to main. The project was last pushed in July 2026, indicating ongoing active development. The star history shows strong community traction since the original 2023 launch.

    LocalGPT - 1

    Community Discussions

    Be the first to start a conversation about LocalGPT

    Share your experience with LocalGPT, 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 on your own hardware.

    • Fully private on-premise deployment
    • Hybrid search (vector + BM25 + Late Chunking)
    • Smart RAG vs. direct LLM routing
    • Contextual enrichment and answer verification
    • RESTful API

    Capabilities

    Key Features

    • Fully private on-premise document Q&A
    • Hybrid search (vector + BM25 + Late Chunking)
    • Smart RAG vs. direct LLM routing
    • Contextual enrichment at index time
    • Query decomposition into sub-questions
    • ColBERT and BGE AI reranking
    • Answer verification pass
    • Semantic caching with TTL
    • Session-aware chat history
    • RESTful API for custom integrations
    • Streaming chat responses
    • Batch document processing
    • Multi-format document support (PDF, DOCX, TXT, Markdown)
    • Docker and direct deployment options
    • CUDA, CPU, HPU, and MPS hardware support
    • LanceDB vector store
    • Ollama model serving integration
    • HuggingFace embeddings and reranking
    • Web UI with index and session management
    • Modular pipeline configuration

    Integrations

    Ollama
    HuggingFace Transformers
    LanceDB
    BM25 (rank_bm25)
    ColBERT (answerai-colbert-small-v1)
    BGE Reranker
    Qwen3 models
    Docling
    ColPali
    Docker
    SQLite
    React/Next.js
    API Available
    View Docs

    Demo Video

    LocalGPT Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

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

    Developer

    PromtEngineer

    PromtEngineer builds open-source AI tools focused on local, private document intelligence. The project is best known for LocalGPT, a self-hosted RAG platform that keeps all data on-device. The developer is active on X (Twitter) and YouTube, sharing tutorials and updates on local AI workflows.

    Read more about PromtEngineer
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    AnythingLLM icon

    AnythingLLM

    An all-in-one AI application that enables private document chat with any LLM, supporting multi-user access, RAG, and AI agents.

    Reducto icon

    Reducto

    Document intelligence platform that extracts structured, LLM-ready data from PDFs, images, spreadsheets, and slides using OCR and vision-language models.

    mnemo icon

    mnemo

    Local-first AI memory layer for any LLM that builds a persistent knowledge graph with entity extraction and semantic retrieval — no cloud required.

    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.

    98 tools

    Local Inference

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

    144 tools

    Document Management

    AI-enhanced platforms for intelligent file storage, organization, and collaboration that automatically categorize, version, and surface relevant documents when needed.

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