Reasoning-native document intelligence engine for AI
Project description
Vectorless is a reasoning-native document intelligence engine written in Rust — no vector database, no embeddings, no similarity search. It transforms documents into hierarchical semantic trees and uses LLMs to navigate the structure, retrieving the most relevant content through deep contextual understanding instead of vector math.
Quick Start
Install
pip install vectorless
Index and Query
import asyncio
from vectorless import Engine, IndexContext
async def main():
# Create engine — api_key and model are required
engine = Engine(
api_key="sk-...",
model="gpt-4o",
)
# Index a document (PDF or Markdown)
result = await engine.index(IndexContext.from_file("./report.pdf"))
doc_id = result.doc_id
# Query
result = await engine.query(doc_id, "What is the total revenue?")
print(result.single().content)
asyncio.run(main())
Rust
[dependencies]
vectorless = "0.1"
use vectorless::client::{EngineBuilder, IndexContext, QueryContext};
#[tokio::main]
async fn main() -> vectorless::Result<()> {
let engine = EngineBuilder::new()
.with_key("sk-...")
.with_model("gpt-4o")
.build()
.await?;
// Index
let result = engine.index(IndexContext::from_path("./report.pdf")).await?;
let doc_id = result.doc_id().unwrap();
// Query
let result = engine.query(
QueryContext::new("What is the total revenue?").with_doc_ids(vec![doc_id.to_string()])
).await?;
println!("Answer: {}", result.content);
Ok(())
}
Examples
See examples for more and stay tuned.
Contributing
Contributions welcome! If you find this useful, please ⭐ the repo — it helps others discover it.
Star History
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vectorless-0.1.7.tar.gz.
File metadata
- Download URL: vectorless-0.1.7.tar.gz
- Upload date:
- Size: 388.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50c4db3c3ec9833b48a7cdd096424095d89cb78782accdc8534da4aef6eb3901
|
|
| MD5 |
410652392426f25ab1fc0f26e27925f8
|
|
| BLAKE2b-256 |
71d90c10f836e2e94befe100107ff4fcd59a9908618d2325cd9a7ff687c5f4f9
|
File details
Details for the file vectorless-0.1.7-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: vectorless-0.1.7-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b19c5d7a7ecd3e25b8787290935b3a1627ad762fefe97e86149bd09f7d69752
|
|
| MD5 |
7243f730fac3e384efa1216ded3f03fb
|
|
| BLAKE2b-256 |
0381c0fca8c94d8b5e150a2bba514537955e41db5b7274893823a5018c49d75e
|