From e9f9dcf733039a9dfbe99c6f18b2ec76ad4d9d60 Mon Sep 17 00:00:00 2001 From: zTgx <747674262@qq.com> Date: Mon, 6 Apr 2026 18:10:29 +0800 Subject: [PATCH] docs(README): reorder algorithm and pilot descriptions for clarity - Reorder the bullet points to put Pilot (LLM) before Algorithm - Maintain the same content but improve the logical flow of information --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 886732f..d5e633e 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,9 @@ 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: -- **Algorithm** handles "how to walk" — BM25 scoring, tree traversal (fast, deterministic) -- **Pilot (LLM)** handles "where to go" — semantic understanding, ambiguity resolution +- **Pilot (LLM)** handles "where to go" +- **Algorithm** handles "how to walk" -**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. ## How It Works