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

# simple_summarize_configuration

> Controls the model and thinking level for lightweight tasks, such as summaries, documentation search, and field metadata.

<Note>
  **Supported for Claude models only.**
</Note>

Controls the Claude model and thinking level for lightweight tasks, including subtitle and description summaries, documentation search, and field metadata.

## Syntax

```yaml theme={null}
ai_settings:
  simple_summarize_configuration:
    model: <smartest | standard | fastest | opus | sonnet | haiku>
    thinking: <none | low | medium | high>
```

## 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="simple_summarize_configuration" type="object">
      Controls the Claude model and thinking level for lightweight tasks, including subtitle and description summaries, documentation search, and field metadata.

      <Expandable title="simple_summarize_configuration properties" defaultOpen="true">
        <ParamField path="model" type="string" default="fastest">
          The model tier to use.

          Must be one of the following:

          * **Provider-agnostic** - `smartest`, `standard`, `fastest`
          * **Anthropic-specific, supported for backwards compatibility** - `opus`, `sonnet`, `haiku`
        </ParamField>

        <ParamField path="thinking" type="string" default="none">
          The thinking level, which controls how much reasoning the model performs before responding.

          Must be one of the following: `none`, `low`, `medium`, `high`
        </ParamField>
      </Expandable>
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Set thinking level (Anthropic-specific)" theme={null}
ai_settings:
  simple_summarize_configuration:
    model: haiku
    thinking: low
```

```yaml title="Set model and thinking level (provider-agnostic)" theme={null}
ai_settings:
  simple_summarize_configuration:
    model: fastest
    thinking: low
```
