LUIS cognitive programmatic get all intents returns the default 100 intents. I want all the intents to be returned. How can we do that?
3 Answers
2
votes
Set the take param to 500 to get all items in one time.
take (optional) integer
The number of entries to return. Maximum page size is 500. Default is 100.
So your request will look like the following:
https://[location].api.cognitive.microsoft.com/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents?take=500
0
votes
Komarl, Check this out https://docs.microsoft.com/en-in/azure/cognitive-services/luis/luis-boundaries I have helped in something.