Reputation: 761
last time i try to learn about LUIS from microsoft, and i found some interesting part about train LUIS.
Is Possible to trained Microsoft LUIS using API without login to LUIS Dashboard?
Upvotes: 2
Views: 1216
Reputation: 600
Yes, it's possible through LUIS programmatic APIs There are 2 APIs:
[POST]https://api.projectoxford.ai/luis/v1.0/prog/apps/{appId}/train
[Get]https://api.projectoxford.ai/luis/v1.0/prog/apps/{appId}/train
You will need to provide the Ocp-Apim-Subscription-Key
header, which is the Subscription key that provides access to the API.
Upvotes: 3