You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(readme): update documentation with clearer explanations and new diagrams
- Replace verbose description with concise warning about early development
- Change "Why Vectorless?" to "What is Vectorless?" with clearer value proposition
- Update architecture explanation with step-by-step process
- Add comparison table showing Traditional RAG vs Vectorless
- Include example input/output demonstration
- Restructure quick start with better code examples
- Add feature matrix highlighting key capabilities
- Create new comparison diagram (docs/design/comparison.svg) showing
Traditional RAG vs Vectorless approaches
- Redesign how-it-works diagram (docs/design/how-it-works.svg) with
4-step visual flow
- Update installation and usage instructions
- Revise contributing guidelines with simplified text
Ultra performant document intelligence engine for RAG, with written in **Rust**. Zero vector database, zero embedding model — just LLM-powered tree navigation. Incremental indexing and multi-format support out-of-box.
15
-
16
-
**Early Development**: This project is in active development. The API and features are likely to evolve, and breaking changes may occur.
17
-
13
+
> ⚠️ **Early Development** — API may change. Not recommended for production yet.
18
14
19
-
## Why Vectorless?
15
+
## What is Vectorless?
20
16
21
-
Traditional RAG systems have a fundamental problem: **they lose document structure.**
17
+
**Vectorless** is a Rust library for querying structured documents using natural language — without vector databases or embedding models.
22
18
23
-
When you chunk a document into vectors, you lose:
24
-
- The hierarchical relationship between sections
25
-
- The context of where information lives
26
-
- The ability to navigate based on reasoning
19
+
Instead of chunking documents into vectors, Vectorless preserves the document's tree structure and uses an LLM to navigate it — like how a human reads a table of contents.
27
20
28
-
**Vectorless takes a different approach:**
29
-
30
-
It preserves your document's tree structure and uses an LLM to navigate it — just like a human would skim a table of contents, then drill into relevant sections.
31
-
32
-
**Result:** More accurate retrieval with zero infrastructure complexity.
21
+
**Analogy:** Traditional RAG is like searching every word in a book. Vectorless is like reading the table of contents, then going to the right chapter.
33
22
34
23
## How It Works
35
24
36
-

25
+

37
26
38
-
**Vectorless** preserves your document's hierarchical structure and uses a multi-stage pipeline for intelligent retrieval:
27
+
### 1. Index: Build a Navigable Tree
39
28
40
-
### Index Pipeline
29
+
```
30
+
Technical Manual (root)
31
+
├── Chapter 1: Introduction
32
+
├── Chapter 2: Architecture
33
+
│ ├── 2.1 System Design
34
+
│ └── 2.2 Implementation
35
+
└── Chapter 3: API Reference
36
+
```
41
37
42
-
Transforms documents into a navigable tree structure:
38
+
Each node gets an AI-generated summary, enabling fast navigation.
-**Pilot** — LLM-powered navigator that guides retrieval decisions
153
+
-**Metrics Hub** — Unified observability for LLM calls, retrieval, and feedback
154
+
155
+
## Examples
142
156
143
-
Contributions are welcome!
157
+
See the [examples/](examples/) directory.
158
+
159
+
## Contributing
144
160
145
-
If you find this project useful, please consider giving it a star on [GitHub](https://github.com/vectorlessflow/vectorless)— it helps others discover it and supports ongoing development.
161
+
Contributions welcome! If you find this useful, please ⭐ the repo — it helps others discover it.
146
162
147
163
## Star History
148
164
@@ -156,4 +172,4 @@ If you find this project useful, please consider giving it a star on [GitHub](ht
156
172
157
173
## License
158
174
159
-
Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.
0 commit comments