Azure AI Document Intelligence : Find Custom Models

Sidharth Chauhan 25 Reputation points
2024-05-16T10:48:47.0366667+00:00

How to get the list of custom models using the sdk From Microsoft Azure Document Intelligence? I'm using Node sdk but didn't found any way to get custom models.

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

Accepted answer
  1. VasaviLankipalle-MSFT 15,241 Reputation points
    2024-05-17T00:55:49.2933333+00:00

    Hello @Sidharth Chauhan, Thanks for using Microsoft Q&A Platform.

    Is this something you are looking for? https://learn.microsoft.com/en-us/javascript/api/overview/azure/ai-form-recognizer-readme?view=azure-node-latest#manage-models

     from `getDocumentModel` as part of the full model information. const models = client.listDocumentModels();
     let i = 1; 
    for await (const summary of models) { console.log(`Model ${i++}:`, summary); }
    

    I hope this helps.

    Regards,

    Vasavi

    -Please kindly accept the answer and vote 'yes' if you feel helpful to support the community, thanks.

    0 comments No comments

0 additional answers

Sort by: Most helpful