Spaces:
Running
title: distill-rag
emoji: π§°
colorFrom: indigo
colorTo: blue
sdk: static
pinned: false
tags:
- tool
- rag
- dataset
- nlp
- text-processing
- search
- embeddings
Distill RAG
A lightweight pipeline for extraction, chunking, embeddings, and search.
π§ What Is This? (Plain-Language Overview)
distill_rag is a small but powerful toolkit that helps you transform messy text sources (HTML pages, transcripts, articles, archives) into clean, structured data that AI models can learn from.
Itβs designed for people who want to build:
- domain-specific AI assistants
- high-quality expert models
- distillation pipelines where a stronger model teaches a smaller one
If youβve ever tried to fine-tune a model and realised the hardest part is actually preparing the dataset β this toolkit is for that problem.
π Why This Exists
Training or distilling a specialised AI model requires clean, coherent, well-structured data. But most text online is:
- full of ads, scripts, headers
- chopped into small fragments
- badly formatted
- missing metadata
- hard to chunk in meaningful ways
Before you can train a model, you need a pipeline that turns raw text into polished, training-ready data.
distill_rag gives you that pipeline. It helps you:
- pull content from raw HTML
- clean and structure it
- break it into long coherent chunks
- embed it locally
- index it with Elasticsearch
- perform high-quality semantic search
This structure mirrors the data format most distillation workflows expect.
Goal: Make it easy for researchers and builders to create high-quality domain-specific AI models.
β‘ Key Benefits: Speed, Simplicity, and Efficiency
Built entirely in Node.js, distill_rag leverages async promises and lightweight concurrency to deliver blazing-fast performanceβoften 5β10Γ faster than equivalent Python-based tools like LlamaIndex, LangChain, or Haystack. This makes it ideal for local workflows on consumer hardware, where you can process thousands of chunks in minutes without heavy dependencies or complex setups.
- GPU-Bound Efficiency: Embeddings (via Ollama) are the bottleneck, but everything else (extraction, chunking, indexing) is lightning-fast, with sustained rates of 30+ chunks/second on a single RTX 3090.
- No Overhead Bloat: Direct HTTP calls to embedding APIs and seamless parallelism mean low CPU/RAM usage and no GIL-like bottlenecks.
- Hackable for JS Devs: If you're in the Node ecosystem (e.g., integrating with web apps or CLIs), this fits like a gloveβzero language switching required.
- Benchmark Example: On an RTX 3090 with 1531 sessions (~3565 chunks, 5000β9000 chars each), a full index rebuild takes just 1m48s (33 chunks/s). Comparable Python tools often take 8β40 minutes for similar workloads due to wrapper latencies and inefficient batching.
If speed and developer joy matter in your RAG/distillation pipeline, this toolkit shines.
π§ How It Works (At a Glance)
1. Extract & Clean
Feed it a folder of HTML (scraped, archived, downloaded). It removes noise and produces structured JSON sessions.
2. Chunk & Embed
Text is broken into long, context-rich chunks (ideal for distillation).
Each chunk is embedded using a local model like mxbai-embed-large.
3. Index & Search
Chunks are stored in Elasticsearch as vectors + metadata. You can then run semantic search to retrieve relevant material.
π Who Should Use This?
- AI researchers building aligned distilled models
- Developers training expert assistants
- Archivists handling large text collections
- Anyone building custom RAG systems
- Anyone who wants a clean, open, hackable indexing pipeline
π Features
- β HTML extraction using Cheerio
- β Robust cleaning (scripts, ads, headers removed)
- β Long-chunker tuned for distillation
- β Async embedding + indexing
- β Elasticsearch v8 dense vector support
- β Ollama embedding API support
- β CLI tools for extraction, indexing, search
- β Test suite included
- β Apache 2.0 licensed
π§± Project Structure
distill_rag/
βββ data_extraction/
β βββ clean_html.js # strip noise safely
β βββ extractor.js # extract Q/A style turns
β βββ convert_raw_to_sessions.js # HTML β structured JSON
β βββ walk_and_extract.js # CLI to batch-convert directories
β
βββ indexing/
β βββ index_distill_chunks.js # long-chunk indexer
β βββ rebuild_distill_index.sh # wipe + rebuild helper
β
βββ search/
β βββ search_distill_chunks.js # BM25 / vector / hybrid search
β βββ search_cli.js # CLI search tool
β
βββ tests/ # jest-based automated test suite
β
βββ prompts/ # optional prompt templates
βββ shared/ # shared utilities
βββ cleanup.sh # remove build artefacts
βββ jest.config.js
βββ package.json
βββ README.md
π¦ Installation
Requirements:
- Node 18+
- Elasticsearch 8.x
- Embedding API (e.g., Ollama running
mxbai-embed-large)
Install:
npm install
π§Ό 1. Extracting Data from Raw HTML
Convert a directory:
node data_extraction/walk_and_extract.js raw_html/ extracted_sessions/
Output example:
{
"title": "example.html",
"turns": [
{ "role": "user", "content": "Q: What is service?" },
{ "role": "assistant", "content": "Service begins with kindness." }
]
}
Behind the scenes it:
- strips scripts, ads, headers, nav bars
- extracts paragraphs and headings
- assigns roles (
user= first block, restassistant) - normalises whitespace
π§± 2. Chunking + Indexing into Elasticsearch
Rebuild the full index:
bash rebuild_distill_index.sh
Manual index build:
ES_DISTILL_INDEX=quo_distill_index \
JSON_DIR=./extracted_sessions \
ELASTICSEARCH_NODE=http://localhost:9200 \
node indexing/index_distill_chunks.js
The indexer:
creates long semantic chunks (5000β9000 characters)
calls your embedding API (
/api/embeddings)indexes all chunks with metadata:
titlesession_datesourcechunk_indexembedding(vector)
π Advanced Retrieval Modes
distill_rag supports three complementary search strategies via search/search_distill_chunks.js:
1. BM25 (Keyword Search)
Classic lexical search. Good for names, citations, exact phrases.
const { searchBM25 } = require("./search/search_distill_chunks");
const results = await searchBM25("service to others", 5);
console.log(results);
2. Vector Search (Dense Embeddings)
Semantic similarity using your local embedding model.
const { searchVector } = require("./search/search_distill_chunks");
const results = await searchVector("how to grow spiritually", 5);
console.log(results);
3. Hybrid Search (RRF Fusion) β Recommended
State-of-the-art fusion of:
- BM25 lexical relevance
- Dense vector KNN
This gives robust results even on noisy or varied datasets.
const { searchHybrid } = require("./search/search_distill_chunks");
const results = await searchHybrid("balance love and wisdom", 5);
console.log(results);
π₯ Search CLI Tool
You can run searches directly from the terminal:
node search/search_cli.js "service to others"
Specify mode (bm25, vector, hybrid) and k:
node search/search_cli.js "healing catalyst" hybrid 8
node search/search_cli.js "unity" bm25 5
node search/search_cli.js "wisdom" vector 10
This prints:
- source file
- chunk index
- score
- preview of the retrieved chunk
π§ͺ Tests
Run all tests:
npm test
Covers:
- HTML cleaning
- extractor correctness
- session conversion
- chunker behaviour
- embedding API live test
- Elasticsearch index live test
- hybrid retrieval
- end-to-end smoke test
π§½ Cleanup
npm run clean
or:
bash cleanup.sh
π Configuration
Config is handled via environment variables:
| Variable | Default | Purpose |
|---|---|---|
ELASTICSEARCH_NODE |
http://localhost:9200 |
ES cluster URL |
ES_DISTILL_INDEX |
quo_distill_index |
Target index |
EMBED_URL |
http://localhost:11434/api/embeddings |
Embedding API |
EMBED_MODEL |
mxbai-embed-large |
Embedding model |
CHUNK_MIN |
5000 |
Minimum chunk size (characters) |
CHUNK_MAX |
9000 |
Maximum chunk size (characters) |
JSON_DIR |
(required) | Directory of session JSON |
π License
Apache 2.0 (see LICENSE).
π€ Contributing
Contributions are welcome β bug fixes, new extractors, support for other embedding backends, indexing strategies, documentation.
βοΈ Final Thoughts
This project is meant to empower people building truth-aligned, service-oriented models. If it helps someone create a clearer dataset or a kinder AI, itβs doing its job.