Windows (.Net) SDK for the Microsoft Language Understanding Intelligent Service API, part of Congitive Services
Перейти к файлу
Ahmed Elhinidy 9088efb1ce Modified UI 2016-08-23 17:32:22 +02:00
ClientLibrary Modified UI 2016-08-23 17:32:22 +02:00
Cognitive-Common-Windows@7d28b4441a Adding Sample and Sample Helper 2016-08-21 12:31:22 +02:00
Sample Modified UI 2016-08-23 17:32:22 +02:00
.gitignore Adding LUIS C# SDK 2016-08-11 12:55:24 +02:00
.gitmodules Adding Sample and Sample Helper 2016-08-21 12:31:22 +02:00
CONTRIBUTING.md Adding LUIS C# SDK 2016-08-11 12:55:24 +02:00
LICENSE.md Adding LUIS C# SDK 2016-08-11 12:55:24 +02:00
README.md Adding LUIS C# SDK 2016-08-11 12:55:24 +02:00

README.md

LUIS

LUIS is a service for language understanding that provides intent classification and entity extraction. In order to use the SDK you first need to create and publish an app on www.luis.ai where you will get your appID and appKey and put their values into App.config in the application provided

The solution contains the SDK itself and a sample application that contains 2 sample use cases (one with intent routers and one using the client directly)

The SDK

The SDK can be used in 2 different ways (both are shown in the sample).

  • one way to use it is to use the client directly and call the functions "Predict" and "reply" that are present in the "LuisClient".
  • another way is to create handlers for each intent (as shown in the sample) and setup a router using these handlers in order to have the router handle the responses instead of doing so within the client application.

Sample Application

The sample application has 3 functions, each can be run seperately as an individual program.

  • RunDialogExample() runs an example using the Dialogue
  • RunPredictionExample() runs an example for a simple prediction
  • RunRouterExample() runs an example for using the IntentRouter class which runs on top of the LuisClient

License

All Microsoft Cognitive Services SDKs and samples are licensed with the MIT License. For more details, see LICENSE.