From ab91e576f95a614b964266cc6c1605ea13897c79 Mon Sep 17 00:00:00 2001 From: addytripathi <47859340+addytripathi@users.noreply.github.com> Date: Fri, 2 May 2025 10:47:28 +0100 Subject: [PATCH] Update search.md Propose adding vector search / hybrid search as its own row in this table. --- solutions/search.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solutions/search.md b/solutions/search.md index e81a91c90..e0050397d 100644 --- a/solutions/search.md +++ b/solutions/search.md @@ -18,6 +18,8 @@ Here are a few common real-world applications: | Use case | Business goals | Technical requirements | | ------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------- | +| **Vector search/hybrid search** | Run nearest neighbour search, combine with text for hybrid results | Dense embeddings, sparse embeddings, combined with text/BM25 | + | **Ecommerce/product catalog search** | Provide fast, relevant, and up-to-date results, faceted navigation | Inventory sync, user behavior tracking, results caching | | **Workplace/knowledge base search** | Search across range of data sources, enforcing permissions | Third-party connectors, document-level security, role mapping | | **Website search** | Deliver relevant, up-to-date results | Web crawling, incremental indexing, query caching |