Skip to content

Commit b04cf8d

Browse files
committed
docs(README): remove outdated architecture explanation
Remove the "How it works" section that contained outdated information about the Vectorless architecture, including the Rust compilation layer and Python query processing details.
1 parent ed4be17 commit b04cf8d

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ async def main():
3030
asyncio.run(main())
3131
```
3232

33-
## How it works
34-
35-
Vectorless splits document understanding into two layers:
36-
37-
- **Compile (Rust).** Documents are parsed and run through a multi-pass compile pipeline (`crates/vectorless-compiler/`) that builds a navigable tree plus retrieval-acceleration artifacts (concepts, navigation hints, reasoning chains, overlap maps). The output is a `DocumentNavigator` (`crates/vectorless-primitives/`) exposed to Python over PyO3.
38-
- **Ask (Python).** Queries are answered by an LLM-driven reasoning loop (`vectorless/ask/`) — a Query Plan, an Orchestrator running Worker agents that issue shell-style navigation commands (`ls`, `cd`, `cat`, `grep`, `find`, `head`, `wc`, `chain`) against the compiled document, evidence evaluation with replanning, and a rerank+synthesize step.
39-
4033
## Help
4134

4235
See [documentation](https://vectorless.dev/docs/getting-started) for more details.

0 commit comments

Comments
 (0)