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

# all_values

> Provides the complete list of possible values to the Omni Agent for measures with a fixed set of values.

This helps the [Omni Agent](/ai/chat) understand the full range of options available for a field.

Use this parameter for measures with a limited, well-defined set of values such as rating scores or categorical aggregations.

Refer to the [Optimizing models for AI](/modeling/develop/ai-optimization) guide for more information on best practices.

## Syntax

```yaml theme={null}
<measure_name>:
  all_values: [<value_1>, <value_2>, ...]
```

## Properties

<ParamField path="measure_name" type="object[]">
  The name of the measure.

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="all_values" type="string[]">
      A complete list of all possible values for the measure. Best suited for measures with a fixed, enumerated set of values.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Rating scale" theme={null}
rating_score:
  all_values: [1, 2, 3, 4, 5]
```

```yaml title="Satisfaction levels" theme={null}
satisfaction_level:
  all_values: [very_dissatisfied, dissatisfied, neutral, satisfied, very_satisfied]
```
