Azure AI Document Intelligence client library for Python - a cloud service that uses machine learning to analyze text and structured data from documents
76
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.
Install with Tessl CLI
npx tessl i tessl/pypi-azure-ai-documentintelligencedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10