Reputation: 468
I'm creating an application that interfaces with the LUIS API. The api seems to provides most everything I need except for a way to test utterances against the app's intents.
This guide from Microsoft details what I'm talking about specifically
https://learn.microsoft.com/en-us/azure/cognitive-services/luis/train-test
Is anyone familiar with a way to test a batch of sample utterances programmatically using the API? I checked every endpoint and it seems to be missing. Either that or I'm the one missing something.
LUIS API Docs https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/58aeface39e2bb03dcd5909e
Upvotes: 0
Views: 821
Reputation: 116
This is the solution. The updated API list is given here in link.Here there are two methods (Get)Get predictions from endpoint and (Post) Get predictions from endpoint.
Upvotes: 0
Reputation: 1230
We currently don't have that feature of batch testing using Programmatic API. It might be considered in future. The only way for batch testing currently is through UI as you have mentioned earlier. And you can submit a feature request here.
Upvotes: 2