---
title: "AiAugmenterSettings"
canonical_url: "https://www.nutrient.io/api/python/settings/vision/advanced/ai-augmenter-settings/"
md_url: "https://www.nutrient.io/api/python/settings/vision/advanced/ai-augmenter-settings.md"
last_updated: "2026-06-12T15:43:20.748Z"
description: "Settings for AiAugmenter. Values fall back through three levels: document → SDK → built-in default."
---

Settings for AiAugmenter. Values fall back through three levels: document → SDK → built-in default. Writes target the document only when set on a document's settings, otherwise the SDK globally when set on SdkSettings.

**Tags:** `Vision`, `Advanced`

```python

from nutrient_sdk import AiAugmenterSettings

```

## Construction

`AiAugmenterSettings` is accessed through a [`Document`](/api/python/document/) instance for per-document overrides, or via [`SdkSettings`](/api/python/settings/document/sdk-settings/) for SDK-wide defaults.

```python

# Per-document override

with Document.open("input.pdf") as doc:
    settings = doc.settings.ai_augmenter_settings
    settings.some_field = new_value          # mutate fields directly

# SDK-wide default (applies to all documents)

SdkSettings.ai_augmenter_settings.some_field = new_value

```

Settings are configured by writing to fields on the returned object. The settings property itself cannot be reassigned — `doc.settings.ai_augmenter_settings = other_settings` is rejected.

## Properties

### classification_confidence

```python

@property
def classification_confidence(self) -> float

@classification_confidence.setter
def classification_confidence(self, value: float) -> None

```

Minimum confidence threshold for zone classification (0.0 - 1.0).

**Type:** `float`

**Default:** `0.7f`

---

### enable_content_description

```python

@property
def enable_content_description(self) -> bool

@enable_content_description.setter
def enable_content_description(self, value: bool) -> None

```

Enable content description extraction for each zone. When enabled, the VLM will provide descriptions of zone content.

**Type:** `bool`

**Default:** `true`

---

### enable_language_detection

```python

@property
def enable_language_detection(self) -> bool

@enable_language_detection.setter
def enable_language_detection(self, value: bool) -> None

```

Indicates whether language detection is enabled for text zones.

**Type:** `bool`

**Default:** `true`

---

### enable_reading_order

```python

@property
def enable_reading_order(self) -> bool

@enable_reading_order.setter
def enable_reading_order(self, value: bool) -> None

```

Indicates whether reading order analysis is enabled.

**Type:** `bool`

**Default:** `true`

---

### enable_relationship_detection

```python

@property
def enable_relationship_detection(self) -> bool

@enable_relationship_detection.setter
def enable_relationship_detection(self, value: bool) -> None

```

Indicates whether relationship detection between zones is enabled.

**Type:** `bool`

**Default:** `true`

---

### enable_vlm_classification

```python

@property
def enable_vlm_classification(self) -> bool

@enable_vlm_classification.setter
def enable_vlm_classification(self, value: bool) -> None

```

Enable or disable VLM-based classification. When disabled, falls back to heuristic classification.

**Type:** `bool`

**Default:** `true`

---

---

## Related pages

- [Per-document override](/api/python/settings/vision/advanced/claude-api-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/content-extraction-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/document-layout-json-export-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/deskew-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/handwriting-settings.md)
- [Advanced](/api/python/settings/vision/advanced.md)
- [Per-document override](/api/python/settings/vision/advanced/open-ai-api-endpoint-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/vision-descriptor-settings.md)
- [Per-document override](/api/python/settings/vision/advanced/table-recognition-settings.md)

