Showcase

Built with NexRAG.

Projects from the community. If you've built something with NexRAG, open a GitHub issue to get it listed here.

v0.5.0 · June 2026
note NexRAG launched May 2026. The first real project is featured below; the remaining cards are illustrative examples of what you can build. Submit yours to be featured.
Policy Chatbot
NexRAG Policy Bot

A Streamlit chatbot that answers questions about company policy, grounded in your Markdown/text policy docs. Streams answers token-by-token via stream_query(), ships OpenTelemetry + Prometheus observability and LLM-as-judge evaluation, and runs fully local on Ollama — every pipeline decision lives in YAML, with no custom RAG code.

Ollama ChromaDB Streamlit Streaming
kevinrawal/nexrag-policy-bot ↗
Document Q&A
Contract Intelligence

Query a corpus of legal contracts for specific clauses, obligations, and dates. Ingest PDFs, ask in plain English, get structured answers with source citations.

OpenAI ChromaDB PDF
submit real project ↗
Knowledge Base
Internal Wiki Assistant

An always-accurate assistant over internal documentation. Ingests Confluence exports, Notion pages, and Markdown files. Employees ask questions, get cited answers.

Anthropic ChromaDB txt/md
submit real project ↗
Research
Paper Analyst

Load a folder of academic PDFs, embed with a local HuggingFace model, retrieve with a strict score threshold. Cross-paper synthesis with zero API costs.

Ollama HuggingFace Local
submit real project ↗
Customer Support
Support Copilot

Index product docs and past support tickets. Surface relevant context to agents in real time. Fully local with Ollama — no customer data leaves the org.

Ollama ChromaDB Custom loader
submit real project ↗
Dev tooling
Codebase Q&A

Point NexRAG at a repo's Markdown docs and source comments. Ask architecture questions, get cited answers. The built-in code chunker preserves function boundaries.

OpenAI Code chunker
submit real project ↗
Streaming API
Live Answer Chatbot

FastAPI backend serving SSE token streams via astream_query(). Ingestion runs async with parallel embedding batches. Users see answers appear word-by-word as the LLM generates them.

mode: async FastAPI Anthropic
submit real project ↗
Submit yours →
Built something with NexRAG?

Open a GitHub issue with your project name, description, stack, and a link. We'll add it here.

Open an issue ↗
Use cases

What NexRAG is good at.

Any problem where the answer lives in your documents — not in the model's training data.

[ doc → answer ]
Document Q&A

PDFs, Word docs, plain text — ingest any document corpus and query it in natural language. Sources and scores are always returned.

[ wiki → assistant ]
Internal knowledge bases

Give teams an always-accurate assistant over internal docs. Ingest incrementally. Deduplication handles re-ingestion safely.

[ data → insight ]
Research & analysis

Load academic papers, reports, or structured data. Run local embeddings with Ollama — no API costs, no data leaving your machine.

[ context → generation ]
Grounded generation

Use NexRAG as the retrieval backbone for any LLM-powered product. Control exactly what context the model sees, and verify it with citations.

[ query → stream ]
Streaming chatbots & APIs

Set mode: async and wire astream_query() into a FastAPI SSE endpoint. Tokens arrive live from the LLM — no buffering, no polling.