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

Available Vision Language Model providers.

from nutrient_sdk import VlmProvider

Values

NameValueDescription
VlmProvider.UNKNOWN0No provider specified.
VlmProvider.CUSTOM1Custom OpenAI-compatible API endpoint (external server). Configured via CustomVlmApiSettings.
VlmProvider.ANTHROPIC2Anthropic provider for Claude model-family Vision APIs.
VlmProvider.OPEN_AI3OpenAI Vision API.
VlmProvider.GOOGLE4Google Vision API (Gemini model family).
VlmProvider.LOCAL5Local VLM that runs directly in the SDK process without an external server. Configured via LocalVlmSettings.

Usage Example

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