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

# ai_context

> Provides context to the Omni Agent for better understanding of field usage.

Free text that can provide context to the [Omni Agent](/ai/chat). Refer to the [Optimizing models for AI](/modeling/develop/ai-optimization) guide for more information on best practices.

For example, context could include behavioral prompting.

## Syntax

```yaml theme={null}
<dimension_name>:
  ai_context: <context_text>
```

## Properties

<ParamField path="dimension_name" type="object">
  The name of the dimension. Dimension names must:

  * Be unique within the view
  * Start with a letter
  * Contain only alphanumeric characters and underscores

  <Expandable title="dimension_name properties" defaultOpen="true">
    <ParamField path="ai_context" type="string">
      Free text providing context to the Omni Agent about when and how to use this field.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Behavioral prompting" theme={null}
product_category:
  ai_context: |
    Use this field when asked to include categorical data about products.
```
