# Customizing models

You can customize any of the existing models using [hooks](https://hivepress.github.io/hook-reference/). For example, the code below changes the maximum allowed listing title length and makes the description optional:

```php
add_filter(
    'hivepress/v1/models/listing',
    function( $model ) {
        $model['fields']['title']['max_length'] = 123;
        $model['fields']['description']['required'] = false;

        return $model;        
    }
);
```

Similarly, you can customize any model in HivePress or its extensions.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hivepress.io/developer-docs/framework/models/customizing-models.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
