The component of an AI system that finds relevant information in a knowledge base or document collection in response to a question or query.
The component of an AI system that finds relevant information in a knowledge base or document collection in response to a question or query.
Retrieval systems implement various information retrieval methods: sparse retrieval (BM25, TF-IDF — efficient, good for exact matches), dense retrieval (semantic embedding search — good for conceptual matching), hybrid retrieval (combining sparse and dense), and knowledge graph retrieval (structured entity and relationship lookup). In RAG architectures, retrieval system performance is the primary determinant of output quality — the generator can only synthesise what it is given. Retrieval evaluation metrics include precision@k, recall@k, MRR, and NDCG. The EU AI Act's requirement for AI systems to be accurate and robust implicitly requires high-quality retrieval in RAG deployments.
Enterprise AI teams must invest as much in retrieval system quality as in language model selection — a high-quality model retrieves the wrong context performs worse than a smaller model with excellent retrieval.
Like a research librarian tasked with finding the three most relevant books on a topic for a scholar — the quality of the scholar's work depends fundamentally on the librarian's ability to find the right sources.
The component of an AI system that finds relevant information in a knowledge base or document collection in response to a question or query.
Retrieval systems implement various information retrieval methods: sparse retrieval (BM25, TF-IDF — efficient, good for exact matches), dense retrieval (semantic embedding search — good for conceptual matching), hybrid retrieval (combining sparse and dense), and knowledge graph retrieval (structured entity and relationship lookup). In RAG architectures, retrieval system performance is the primary determinant of output quality — the generator can only synthesise what it is given. Retrieval evaluation metrics include precision@k, recall@k, MRR, and NDCG. The EU AI Act's requirement for AI systems to be accurate and robust implicitly requires high-quality retrieval in RAG deployments.
Enterprise AI teams must invest as much in retrieval system quality as in language model selection — a high-quality model retrieves the wrong context performs worse than a smaller model with excellent retrieval.