diff --git a/README.md b/README.md
index 82c01c7..8e682a3 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-
Agentic-based Document Engine
+Reasoning-based Document Engine
[](https://pypi.org/project/vectorless/)
[](https://pepy.tech/projects/vectorless)
@@ -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
diff --git a/rust/tests/integration.rs b/rust/tests/integration.rs
index 526035d..00c6b0c 100644
--- a/rust/tests/integration.rs
+++ b/rust/tests/integration.rs
@@ -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;