Skip to content

Commit 654447c

Browse files
authored
Merge pull request #26 from vectorlessflow/dev
Dev
2 parents ce0eda7 + 1ef9dab commit 654447c

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust", "python"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.1.19"
6+
version = "0.1.20"
77
edition = "2024"
88
authors = ["zTgx <beautifularea@gmail.com>"]
99
license = "Apache-2.0"

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@
1717

1818
**Vectorless** is a library for querying structured documents using natural language — without vector databases or embedding models. Core engine written in Rust, with Python bindings.
1919

20-
Instead of chunking documents into vectors, Vectorless preserves the document's tree structure and uses a **hybrid algorithm + LLM approach** to navigate it — like how a human reads a table of contents:
21-
22-
- **Pilot (LLM)** handles "where to go"
23-
- **Algorithm** handles "how to walk"
24-
20+
Instead of chunking documents into vectors, Vectorless preserves the document's tree structure and uses LLM to navigate it — like how a human reads a table of contents.
2521

2622
## How It Works
2723

@@ -45,9 +41,9 @@ Each node gets an AI-generated summary, enabling fast navigation.
4541
When you ask "How do I reset the device?":
4642

4743
1. **Analyze** — Understand query intent and complexity
48-
2. **Navigate** — LLM guides tree traversal (like reading a TOC)
44+
2. **Navigate** — LLM guides tree traversal
4945
3. **Retrieve** — Return the exact section with context
50-
4. **Verify** — Check if more information is needed (backtracking)
46+
4. **Verify** — Check if more information is needed
5147

5248
## Traditional RAG vs Vectorless
5349

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "vectorless"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Hierarchical document intelligence without vectors"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)