Home > Blockchain >  Where to find the model identifier in Form Recognizer?
Where to find the model identifier in Form Recognizer?

Time:12-08

I have trained a custom form identifier using Form Recognizer Studio:

enter image description here

The model is trained and it seems to be working well.

Now, I want to use this model using Power Automate, but I need the model identifier, but Where Can I Find It?

enter image description here

I have searched it everywhere in Azure, but no luck:

enter image description here

CodePudding user response:

In the Studio you can find the models IDs within the projects in the Model tab. Please note though that the Form Recognizer Power Automate connector does not yet support the new preview release and supports only the 2.1 GA API. In order to use it you need to train the model in the 2.1 release and use https://fott-2-1.azurewebsites.net/. In 2.1 you will also find the model ID in the UX.

If you want to use the new Studio and preview API in power automate you can create a custom connector and call the REST API directly using the AnalyzeDocument API https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v3-0-preview-1/operations/AnalyzeDocument In this case you will need to provide the model name which is the unique model name you gave the model when training it.

  • Related