AiAugmenterSettings
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
from nutrient_sdk import AiAugmenterSettingsConstruction
AiAugmenterSettings is accessed through a Document instance for per-document overrides, or via SdkSettings for SDK-wide defaults.
# Per-document overridewith 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_valueSettings 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
@propertydef classification_confidence(self) -> float
@classification_confidence.setterdef classification_confidence(self, value: float) -> NoneMinimum confidence threshold for zone classification (0.0 - 1.0).
Type: float
Default: 0.7f
enable_content_description
@propertydef enable_content_description(self) -> bool
@enable_content_description.setterdef enable_content_description(self, value: bool) -> NoneEnable content description extraction for each zone. When enabled, the VLM will provide descriptions of zone content.
Type: bool
Default: true
enable_language_detection
@propertydef enable_language_detection(self) -> bool
@enable_language_detection.setterdef enable_language_detection(self, value: bool) -> NoneIndicates whether language detection is enabled for text zones.
Type: bool
Default: true
enable_reading_order
@propertydef enable_reading_order(self) -> bool
@enable_reading_order.setterdef enable_reading_order(self, value: bool) -> NoneIndicates whether reading order analysis is enabled.
Type: bool
Default: true
enable_relationship_detection
@propertydef enable_relationship_detection(self) -> bool
@enable_relationship_detection.setterdef enable_relationship_detection(self, value: bool) -> NoneIndicates whether relationship detection between zones is enabled.
Type: bool
Default: true
enable_vlm_classification
@propertydef enable_vlm_classification(self) -> bool
@enable_vlm_classification.setterdef enable_vlm_classification(self, value: bool) -> NoneEnable or disable VLM-based classification. When disabled, falls back to heuristic classification.
Type: bool
Default: true