tessl install tessl/pypi-azure-ai-documentintelligence@1.0.0Azure AI Document Intelligence client library for Python - a cloud service that uses machine learning to analyze text and structured data from documents
Agent Success
Agent success rate when using this tile
76%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.19x
Baseline
Agent success rate without this tile
64%
Design a small lifecycle manager that creates, combines, inspects, and cleans up document models backed by the provided cloud service. The workflow should be straightforward for anyone familiar with the SDK that manages document models.
model_id, description, source, created_at, and operation_id. @testmodel_id, components (ordered), tags, and description. @testmodel_id, created_at, and optional description, including those just built and composed in this workflow. @testcount and limit, with the count never exceeding the limit. @teststatus, last_updated, and percent_completed when provided by the service. @test@generates
from typing import Any, Dict, List, Optional
class ModelLifecycleManager:
def __init__(self, endpoint: str, api_key: str) -> None: ...
def build_custom_model(
self,
model_id: str,
training_container_url: str,
*,
description: Optional[str] = None,
mode: str = "neural",
tags: Optional[Dict[str, str]] = None
) -> Dict[str, Any]: ...
def compose_models(
self,
target_model_id: str,
component_model_ids: List[str],
*,
description: Optional[str] = None,
tags: Optional[Dict[str, str]] = None
) -> Dict[str, Any]: ...
def list_models_summary(self) -> List[Dict[str, Any]]: ...
def get_resource_quota(self) -> Dict[str, Any]: ...
def delete_model(self, model_id: str) -> None: ...
def get_operation_snapshot(self, operation_id: str) -> Dict[str, Any]: ...Python SDK for managing and analyzing document intelligence models.