From d6c114fe58eb46a4a3e4c8f516e76ec1a1cd024b Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Tue, 11 Aug 2026 16:50:50 -0600 Subject: [PATCH] feat: simplified the duckdb selection prompt --- src/rag/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rag/mod.rs b/src/rag/mod.rs index 0c49e2f..ac1ba52 100644 --- a/src/rag/mod.rs +++ b/src/rag/mod.rs @@ -274,7 +274,7 @@ impl Rag { let driver = if prompt_for_driver { let options = vec![ "yaml — portable, in-memory HNSW; usable from several Coyote processes at once (default)", - "duckdb — persistent on-disk store; vectors and content survive restarts; HNSW approximate search. Several Coyote processes can query it at once, but ingesting or rebuilding it locks the others out until that finishes, and its driver cannot be changed later without recreating the RAG", + "duckdb — persistent on-disk store; vectors and content survive restarts; HNSW approximate search.", ]; let sel = Select::new("RAG storage driver:", options) .with_starting_cursor(0)