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

# auto_run - Model files

> Forces all queries using the connection to require a run click to return new results.

Forces all queries using the connection to require a run click to return new results. This can be useful if there are cost concerns on running queries as they are built, but it will reduce UI interactivity.

## Syntax

```yaml theme={null}
auto_run: true/false
```

## Properties

<ParamField path="auto_run" type="boolean">
  Controls whether queries using the underlying database connection automatically run. When set to `false`, users must click a run button to execute queries. When set to `true`, queries run automatically.
</ParamField>

## Examples

```yaml title="Disable auto-run for the model" theme={null}
auto_run: false
```
