Forked from mindstudio/big-rag
Project Files
QUICKSTART.md
Use this guide to run Big RAG with a small local test collection.
nomic-ai/nomic-embed-text-v1.5-GGUF.cd big-rag-plugin npm install npx tsc
For full LM Studio development mode, run:
npm run dev
If npm run build fails because .lmstudio/entry.ts is missing, open/run the plugin through LM Studio tooling so that file is generated. npx tsc is enough for local TypeScript validation.
Required:
Recommended defaults for a first run:
Set Documents Directory to ~/test-docs and Vector Store Directory to a new directory such as ~/.lmstudio/big-rag-test-db.
Start a chat and ask:
On the first run, Big RAG performs sanity checks, initializes the vector store, scans the directory, indexes supported files, embeds chunks in batches, searches for relevant content, and injects retrieved passages into the prompt.
Subsequent chats reuse the existing index unless the vector store is empty or you request a manual reindex.
Turn Manual Reindex Trigger on and send any chat message.
Turn Manual Reindex Trigger off after the run to avoid reindexing on every chat.
sentence chunking for prose-heavy PDFs, DOCX files, and long-form text when retrieval quality matters more than indexing speed.The current version indexes text-like formats such as .txt, .md, .csv, .json, .yaml, .rst, .log, plus .pdf, .epub, .docx, .odt, HTML, and OCR-enabled images.
README.md for full configuration details.EXAMPLES.md for scenario-based setups.TESTING.md for validation steps and performance checks.nomic-ai/nomic-embed-text-v1.5-GGUFmkdir -p ~/test-docs
echo "Artificial intelligence is transforming technology." > ~/test-docs/ai.txt
echo "Machine learning is a subset of AI." > ~/test-docs/ml.txt
echo '{"topic":"retrieval","note":"RAG combines search with generation."}' > ~/test-docs/rag.json
What is artificial intelligence?