I've created a Text Classification Model that can output more than one tag, and I want to incorporate a Power Automate flow that, periodically:
1. Lists all items in an excel file,
2. Filters by items added last week,
3. Runs a text input through the AI Model and
4. Writes the output in a separate column in the same excel file.
When I select the the column to output and write:
outputs('Predict')?['body/responsev2/predictionOutput/results']
The written output in Excel is, for example, "[{"@odata.type":"#Microsoft.Dynamics.CRM.expando","type":"Economics","score":0.99856824},"@odata.type":"#Microsoft.Dynamics.CRM.expando","type":"Technology","score":0.7865113}]",
yet, if I select the Dynamic Content "Type" items('For_each_1')?['type'], the written output is only "Economics".
I want the output to be "Economics, Technology", how can I make sure that happens?