Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

**Vectorless** is a reasoning-native document engine designed to be the foundational layer for AI applications that need structured access to documents, with the core written in Rust. It does not use vector databases, embeddings, or similarity search. Instead, it transforms documents into hierarchical semantic trees and uses the LLM itself to navigate and retrieve — purely LLM-guided, from indexing to querying.

---


## Why Vectorless

Expand All @@ -24,11 +24,11 @@ Most document retrieval solutions rely on vector similarity — splitting docume
Vectorless takes a different approach. No vectors at all. It builds a **semantic tree index** of each document — preserving the original hierarchy — and uses the LLM itself to navigate that structure. The LLM generates the tree during indexing and reasons through it during retrieval. Pure LLM guidance, end to end.

<div align="center">
<img src="https://vectorless.dev/img/workflow.svg" alt="Vectorless Workflow" width="720">
<img src="https://vectorless.dev/img/workflow.svg" alt="Vectorless Workflow" width="900">
</div>

<div align="center">
<img src="https://vectorless.dev/img/demo.gif" alt="Vectorless Demo" width="720">
<img src="https://vectorless.dev/img/demo.gif" alt="Vectorless Demo" width="900">
</div>

## Quick Start
Expand Down