This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/description-level.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. DescriptionLevel

Description detail levels for Vision document description.

from nutrient_sdk import DescriptionLevel

Values

NameValueDescription
DescriptionLevel.UNKNOWN0No description.
DescriptionLevel.STANDARD1Standard concise description.
DescriptionLevel.DETAILED2Detailed description with additional context.

Usage Example

from nutrient_sdk import DescriptionLevel
# Access enum values
value = DescriptionLevel.UNKNOWN
print(f"Value: {value}") # Output: Value: DescriptionLevel.UNKNOWN
print(f"Integer value: {value.value}") # Output: Integer value: 0