Custom extraction model in azure Form recognizer gives "ModelNotFound" using python sdk

Anonymous
2023-06-07T10:54:59.3766667+00:00

User's image

endpoint = "***"
key = "****8"

formUrl = "*****"
document_analysis_client = DocumentAnalysisClient(
    endpoint=endpoint, credential=AzureKeyCredential(key)
)

# Make sure your document's type is included in the list of document types the custom model can analyze
poller = document_analysis_client.begin_analyze_document_from_url(model_id, formUrl)
result = poller.result()
Azure AI Document Intelligence
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.