How to publish the model created in Azure Document Intelligence? Model is created but not able to find option to publish it.

GIRISH PATIL 20 Reputation points
2025-04-16T09:23:52.8833333+00:00

How to publish the model created in Azure Document Intelligence? Model is created but not able to find option to publish it.

Azure AI Document Intelligence
Azure AI Document Intelligence
An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
2,110 questions
{count} votes

Accepted answer
  1. JAYA SHANKAR G S 3,960 Reputation points Microsoft External Staff Moderator
    2025-04-22T07:39:07.34+00:00

    Hello @GIRISH PATIL ,

    As per this documentation in document intelligence there is no publish option, instead of that after training the extraction model you test it via SDK, Api or clicking on Test.

    Here it the sample rest api example for testing the custom model.

    Make POST request to this endpoint

    https://myendpoint.cognitiveservices.azure.com/documentintelligence/documentModels/customModelId:analyze?_overload=analyzeDocument&api-version=2024-11-30&pages=1-2,4&locale=en-US&stringIndexType=textElements
    

    and below is the body.

    { "urlSource": "http://host.com/doc.pdf" }
    

    Next, for above request you will get response with result id URL where you need to make Get request on that URL to get the results.

    Please check this Rest API operation for more information.

    If above solution helped you, please do accept it and give feedback by clicking on yes and if you have any query let me know in comments or in private message.

    Thank you

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

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