From a25c2ca68f8cdf54fa849cfdaf3518e854be0add Mon Sep 17 00:00:00 2001 From: zTgx <747674262@qq.com> Date: Tue, 21 Apr 2026 07:26:42 +0800 Subject: [PATCH] docs(readme): update project description from agentic-based to reasoning-based - Change "Agentic-based Document Engine" to "Reasoning-based Document Engine" - Update description text from "agentic-based" to "reasoning-based" refactor(tests): remove unused cancel blocks test - Remove test_cancel_blocks_new_operations function that was no longer needed --- README.md | 4 ++-- rust/tests/integration.rs | 15 --------------- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 82c01c7..8e682a3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Vectorless -

Agentic-based Document Engine

+

Reasoning-based Document Engine

[![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) @@ -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;