Skip to content

Commit

Permalink
DR-654 comment out TODOs (#2623)
Browse files Browse the repository at this point in the history
  • Loading branch information
daveatweaviate authored Sep 17, 2024
1 parent 8fd393e commit 5e80001
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion developers/weaviate/concepts/_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ Here's a brief overview of each step:

### Filter

<!--
:::warning TODO
Add simple wide fig
:::
-->

Filters reduce the number of objects based on specific criteria. This can include:

Expand All @@ -51,9 +53,11 @@ This ensures that search results overlap with the filter criteria to make sure t

### Search

<!--
:::warning TODO
Add simple wide fig
:::
-->

Search is about finding the closest, or most relevant data objects. Weaviate supports three primary search types: [vector search](#vector-search), [keyword search](#keyword-search), and [hybrid search](#hybrid-search).

Expand Down Expand Up @@ -134,19 +138,23 @@ In this case, Weaviate will retrieve objects in order of their UUIDs.

### Reranking

<!--
:::warning TODO
Add simple wide fig
:::
-->

Reranking improves search relevance by reordering initial results.

You might ask - why not just use the best model from the start? The answer is that the best models are often computationally expensive. By using a simpler model for the initial search, we can reduce the result set to a manageable size. The reranking algorithm then uses a more computationally expensive model to refine the order of the top results.

### Generative Search / RAG

<!--
:::warning TODO
Add simple wide fig
:::
-->

Generative search is another name for Retrieval-Augmented Generation (RAG). RAG uses AI to generate responses based on a prompt, and the added context that is retrieved through the above search process.

Expand Down Expand Up @@ -241,4 +249,3 @@ Identify fields that contribute most to semantic understanding. Consider combini
#### Alpha (hybrid search)

- What is the alpha values

0 comments on commit 5e80001

Please sign in to comment.