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

# show_progress_narration - AI settings

> Controls how verbose Blobby's progress narration is while it works, across all LLM model providers.

Controls how much progress narration the [Omni Agent](/ai/chat) shows while working. This applies across all LLM model providers.

## Syntax

```yaml theme={null}
ai_settings:
  show_progress_narration: <enabled | disabled | default>
```

## Properties

<ParamField path="ai_settings" type="object">
  An object that contains various AI settings. See [`ai_settings`](/modeling/models/parameters/ai-settings) for more information.

  <Expandable title="ai_settings properties" defaultOpen="true">
    <ParamField path="show_progress_narration" type="string" default="enabled">
      Controls how much progress narration the [Omni Agent](/ai/chat) shows while working.

      Must be one of the following:

      * `default` - Uses the default behavior (`enabled`)
      * `enabled` - **Default**. Shows more of the AI's internal thinking as it works
      * `disabled` - Shows less verbose progress narration. All steps, tool use, and results still appear in the chat; the only difference is the narration describing the AI's internal thinking is more concise.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Reduce narration verbosity" theme={null}
ai_settings:
  show_progress_narration: disabled
```

```yaml title="Show more detailed progress narration" theme={null}
ai_settings:
  show_progress_narration: enabled
```
