1.0.0 (2026-02-28)
Features Added
- GA release of Azure AI Content Understanding client library for Python
- Each
ContentFieldsubclass (e.g.,StringField,NumberField) now exposes avalueproperty with a type appropriate to that subclass (e.g.,strforStringField,floatforNumberField)
Other Changes
The following API changes were made from the preview SDK (1.0.0b1) to the GA SDK to align with Azure SDK for Python design guidelines:
- Type renames:
AnalyzeInput→AnalysisInput,AnalyzeResult→AnalysisResult,MediaContent→AnalysisContent,MediaContentKind→AnalysisContentKind - Property renames:
AnalysisInput.input_range→content_range - Method signatures:
begin_analyzeinputsparameter is now a required keyword argument (previously optional); parameter order changed toinputs,model_deployments,processing_location - Method signatures:
begin_analyze_binaryinput_rangekeyword renamed tocontent_range; parameter order changed tocontent_range,content_type,processing_location - Added new sample
sample_create_analyzer_with_labelsfor label-based training (sync + async)