The Contextual Recall metric is one of several non-deterministic Metric Galtea uses to evaluate whether the information retrieved by your RAG pipeline sufficiently covers the knowledge needed to produce the correct or expected output. It measures completeness rather than ranking. This metric is valuable for identifying retrieval gaps—cases where important information was missing from the context entirely.Documentation Index
Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
Use this file to discover all available pages before exploring further.
Evaluation Parameters
To compute thecontextual_recall metric, the following inputs are required:
input: The user’s query.retrieval_context: The set of documents or nodes retrieved by the system.expected_output: The reference or target response that should be generated.
How Is It Calculated?
The score is computed using an LLM that:- Information Need Inference: Determines what key facts or concepts are necessary to produce the
expected_output. - Coverage Check: Verifies whether those pieces of information exist in the
retrieval_context.
This metric was incorporated to the Galtea platform from the open source library deepeval, for more information you can also visit their documentation.