🔍Retrivers
AI components that efficiently fetch relevant data from knowledge bases in response to queries, supporting natural language tasks like question-answering and information retrieval.
Last updated
AI components that efficiently fetch relevant data from knowledge bases in response to queries, supporting natural language tasks like question-answering and information retrieval.
Last updated
Cohere Rerank indexes the documents from most to least semantically relevant to the query.
A document compressor that uses embeddings to drop documents unrelated to the query.
Use HyDE retriever to retrieve from a vector store.
Iterate over the initially returned documents and extract, from each, only the content that is relevant to the query.
Store prompt template with name & description to be later queried by MultiPromptChain.
Reciprocal Rank Fusion to re-rank search results by multiple query generation.
7)Similarity Score Threshold Retriever
Return results based on the minimum similarity percentage.
Store vector store as retriever to be later queried by Multi Retrieval QA Chain.
Voyage AI Rerank indexes the documents from most to least semantically relevant to the query.