> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openlayer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Context relevancy

> Learn how to use the context relevancy test

## Definition

The context relevancy test measures how relevant the context retrieved is given the question. This metric is based on the Ragas [context precision](https://docs.ragas.io/en/stable/concepts/metrics/available_metrics/context_precision/) metric.

## Taxonomy

* **Task types**: LLM.
* **Availability**: <Tooltip tip="Continuously evaluate your models and datasets as you iterate on their versions.">development</Tooltip>
  and <Tooltip tip="Monitor a model in production, measure its health, check for drifts and set up alerts.">monitoring</Tooltip>.

## Why it matters

* Context relevancy ensures that your retrieval system provides information that is directly related to the user's question.
* This metric helps identify when your retrieval mechanism is returning irrelevant or off-topic context that could confuse the LLM.
* It's essential for RAG (Retrieval-Augmented Generation) systems to maintain high precision in retrieved information.

## Required columns

To compute this metric, your dataset must contain the following columns:

* **Input**: The question or prompt given to the LLM
* **Ground truth**: The reference/correct answer
* **Context**: The retrieved context or background information

<Note>
  This metric relies on an LLM evaluator judging your submission. On Openlayer,
  you can configure the underlying LLM used to compute it. Check out the
  [OpenAI](/integrations/openai#openai-llm-evaluator) or
  [Anthropic](/integrations/anthropic#anthropic-llm-evaluator) integration
  guides for details.
</Note>

## Test configuration examples

If you are writing a `tests.json`, here are a few valid configurations for the context relevancy test:

<CodeGroup>
  ```json Development theme={null}
  [
    {
      "name": "Context relevancy above 0.8",
      "description": "Ensure that retrieved context is highly relevant to the question with a score above 0.8",
      "type": "performance",
      "subtype": "metricThreshold",
      "thresholds": [
        {
          "insightName": "metrics",
          "insightParameters": null,
          "measurement": "contextRelevancy",
          "operator": ">",
          "value": 0.8
        }
      ],
      "subpopulationFilters": null,
      "mode": "development",
      "usesValidationDataset": true,
      "usesTrainingDataset": false,
      "usesMlModel": false,
      "syncId": "b4dee7dc-4f15-48ca-a282-63e2c04e0689"
    }
  ]
  ```

  ```json Monitoring theme={null}
  [
    {
      "name": "Context relevancy above 0.8",
      "description": "Ensure that retrieved context is highly relevant to the question with a score above 0.8",
      "type": "performance",
      "subtype": "metricThreshold",
      "thresholds": [
        {
          "insightName": "metrics",
          "insightParameters": null,
          "measurement": "contextRelevancy",
          "operator": ">",
          "value": 0.8
        }
      ],
      "subpopulationFilters": null,
      "mode": "monitoring",
      "usesProductionData": true,
      "evaluationWindow": 3600,
      "delayWindow": 0,
      "syncId": "b4dee7dc-4f15-48ca-a282-63e2c04e0689"
    }
  ]
  ```
</CodeGroup>

## Related

* [Ragas integration](/integrations/ragas) - Learn more about Ragas metrics.
* [Context recall test](/tests/catalog/context-recall) - Measure completeness of retrieved context.
* [Context utilization test](/tests/catalog/context-utilization) - Evaluate how well context is used.
* [Aggregate metrics](/tests/performance/aggregate-metrics) - Overview of all available metrics.
