Hi,
I have a Custom Entity Extraction Model and I will send a sentence to that model to extract entities. I am getting the response in array were multiple entities extracted for the sentence. I want capture the score with higher value in the array response.
Below shows the output of AI Model:
[
{
"@odata.type": "#Microsoft.Dynamics.CRM.expando",
"type": "Success",
"startIndex":0,
"length":4,
"value":"pass"
"score": 0.9958772
},
{
"@odata.type": "#Microsoft.Dynamics.CRM.expando",
"type": "Fail",
"startIndex":0,
"length":4,
"value":"fail"
"score": 0.77722
}
]
Here I need to get the data which have higher confidence and store the type in SharePoint list.
can suggest me with the flow or expression how to filter array with higher confidence.
Thanks in advance!