> ## 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.

# Conciseness

> Learn how to use the conciseness test

## Definition

The conciseness test evaluates how brief and to-the-point the generated answer is while still being complete and informative. This metric is based on the Ragas [aspect critique](https://docs.ragas.io/en/stable/concepts/metrics/available_metrics/general_purpose/#aspect-critic) for conciseness.

## 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

* Conciseness ensures that your LLM generates responses that are appropriately brief without unnecessary verbosity.
* This metric helps identify when your model produces overly lengthy or repetitive responses that could frustrate users.
* It's particularly important for applications with space constraints, mobile interfaces, or when quick, direct answers are preferred.

## Required columns

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

* **Input**: The question or prompt given to the LLM
* **Outputs**: The generated answer/response from your LLM

<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 conciseness test:

<CodeGroup>
  ```json Development theme={null}
  [
    {
      "name": "Conciseness above 0.7",
      "description": "Ensure that generated responses are appropriately concise with a score above 0.7",
      "type": "performance",
      "subtype": "metricThreshold",
      "thresholds": [
        {
          "insightName": "metrics",
          "insightParameters": null,
          "measurement": "conciseness",
          "operator": ">",
          "value": 0.7
        }
      ],
      "subpopulationFilters": null,
      "mode": "development",
      "usesValidationDataset": true,
      "usesTrainingDataset": false,
      "usesMlModel": false,
      "syncId": "b4dee7dc-4f15-48ca-a282-63e2c04e0689"
    }
  ]
  ```

  ```json Monitoring theme={null}
  [
    {
      "name": "Conciseness above 0.7",
      "description": "Ensure that generated responses are appropriately concise with a score above 0.7",
      "type": "performance",
      "subtype": "metricThreshold",
      "thresholds": [
        {
          "insightName": "metrics",
          "insightParameters": null,
          "measurement": "conciseness",
          "operator": ">",
          "value": 0.7
        }
      ],
      "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.
* [Coherence test](/tests/catalog/coherence) - Evaluate logical consistency of responses.
* [Correctness test](/tests/catalog/correctness) - Measure overall correctness of answers.
* [Aggregate metrics](/tests/performance/aggregate-metrics) - Overview of all available metrics.
