From 70da24b6917138e56b4cc3ab889b32cda463888b Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 18 May 2026 06:40:41 -0400 Subject: [PATCH] docs: add '--search-type' examples to CLI docs --- docs/cli.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/cli.md b/docs/cli.md index d580e288..86cfd69a 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -133,6 +133,18 @@ With options: haiku-rag search "python programming" --limit 10 # or -l 10 ``` +With search type: +```bash +# Hybrid search (the default) +haiku-rag search "python programming" --search-type hybrid # or -s hybrid + +# Full-text search only +haiku-rag search "python programming" --search-type fts # or -s fts + +# Vector search only +haiku-rag search "python programming" --search-type vector # or -s vector +``` + With filters (filter by document properties, use `--filter` or `-f`): ```bash # Filter by URI pattern