Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions 15-rag-and-vector-databases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ There are several ways to perform search within our database such as:

- **Keyword search** - used for text searches

- **Semantic search** - uses the semantic meaning of words

- **Vector search** - converts documents from text to vector representations using embedding models. Retrieval will be done by querying the documents whose vector representations are closest to the user question.
- **Vector search** - converts documents from text to vector representations using embedding models, permitting a **semantic search** using the meaning of words. Retrieval will be done by querying the documents whose vector representations are closest to the user question.

- **Hybrid** - a combination of both keyword and vector search.

Expand Down