Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://vectorless.dev/img/with-title.png" alt="Vectorless" width="400">

<h1>Agentic-based Document Engine</h1>
<h1>Reasoning-based Document Engine</h1>

[![PyPI](https://img.shields.io/pypi/v/vectorless.svg)](https://pypi.org/project/vectorless/)
[![PyPI Downloads](https://static.pepy.tech/badge/vectorless/month)](https://pepy.tech/projects/vectorless)
Expand All @@ -15,7 +15,7 @@

**Reason, don't vector.**

**Vectorless** is an agentic-based document engine with the core written in Rust. It will reason through any of your structured documents — **PDFs, Markdown, reports, contracts** — and retrieve only what's relevant. Nothing more, nothing less.
**Vectorless** is a reasoning-based document engine with the core written in Rust. It will reason through any of your structured documents — **PDFs, Markdown, reports, contracts** — and retrieve only what's relevant. Nothing more, nothing less.


## Quick Start
Expand Down
15 changes: 0 additions & 15 deletions rust/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,6 @@ async fn test_force_mode_reindexes() {
assert_ne!(result2.doc_id().unwrap(), id1);
}

#[tokio::test]
async fn test_cancel_blocks_new_operations() {
let (engine, _tmp) = setup().await;

engine.cancel();
assert!(engine.is_cancelled());

let ctx = IndexContext::from_content("# test", vectorless::DocumentFormat::Markdown);
let err = engine.index(ctx).await.unwrap_err();
assert!(err.to_string().contains("cancelled"));

engine.reset_cancel();
assert!(!engine.is_cancelled());
}

#[tokio::test]
async fn test_clear_empty_workspace() {
let (engine, _tmp) = setup().await;
Expand Down
Loading