Azure AI Document Intelligence client library for Python - a cloud service that uses machine learning to analyze text and structured data from documents
76
{
"context": "Evaluates how well the solution orchestrates cross-resource copy flows in azure-ai-documentintelligence by generating target-side copy authorizations and driving the long-running pollers to completion. Focuses on correct use of the administration client APIs for models and classifiers, including configuring polling and resuming operations.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Model authorization",
"description": "Generates model copy authorization on the target resource via DocumentIntelligenceAdministrationClient.authorize_model_copy (or async equivalent) using the requested target model identifier before starting the copy.",
"max_score": 20
},
{
"name": "Classifier authorization",
"description": "Generates classifier copy authorization on the target resource via DocumentIntelligenceAdministrationClient.authorize_classifier_copy (or async equivalent) using the requested target classifier identifier before starting the copy.",
"max_score": 20
},
{
"name": "Model copy poller",
"description": "Starts model transfer from the source with begin_copy_model_to using the authorization token, configures the poller interval/polling via polling_interval or equivalent, and waits on poller.result() to return the copied model_id.",
"max_score": 20
},
{
"name": "Classifier copy poller",
"description": "Starts classifier transfer from the source with begin_copy_classifier_to using the authorization token, applies the provided polling interval configuration, and waits on poller.result() to return the new classifier_id.",
"max_score": 20
},
{
"name": "Continuation resume",
"description": "Captures poller.continuation_token() during a copy and successfully resumes via begin_copy_model_to or begin_copy_classifier_to with continuation_token to complete the operation and surface the final asset identifier/status.",
"max_score": 20
}
]
}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