├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── authoring-routes.md ├── azuredeploy.json ├── bot-integration-samples └── hotel-finder │ ├── README.md │ ├── csharp │ ├── App_Start │ │ └── WebApiConfig.cs │ ├── Controllers │ │ └── MessagesController.cs │ ├── Dialogs │ │ └── RootLuisDialog.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Hotel.cs │ ├── HotelsQuery.cs │ ├── LuisBot.csproj │ ├── LuisBot.json │ ├── LuisBot.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── Services │ │ ├── BingSpellCheckError.cs │ │ ├── BingSpellCheckFlaggedToken.cs │ │ ├── BingSpellCheckResponse.cs │ │ ├── BingSpellCheckService.cs │ │ └── BingSpellCheckSuggestion.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── azuredeploy.json │ ├── default.htm │ ├── images │ │ ├── bot-emulator-result.png │ │ ├── bot-screenshot.png │ │ ├── highlights-phrase.png │ │ ├── highlights-regex.png │ │ ├── import-new-app.png │ │ ├── outcome.png │ │ ├── prereqs-apikey.png │ │ ├── prereqs-appid.png │ │ └── prereqs-import.png │ ├── obj │ │ └── Debug │ │ │ └── LuisBot.csproj.CoreCompileInputs.cache │ └── packages.config │ └── nodejs │ ├── .env │ ├── LuisBot.json │ ├── README.md │ ├── app.js │ ├── azuredeploy.json │ ├── images │ ├── highlights-phrase.png │ ├── highlights-regex.png │ ├── outcome.png │ ├── prereqs-import.png │ └── prereqs-publish.png │ ├── package.json │ ├── spell-service.js │ └── store.js ├── community-projects.md ├── documentation-samples ├── Examples-BookFlight │ ├── readme.md │ ├── travel-agent-sample-01.json │ ├── travel-agent-sample-02.json │ └── utterance-to-upload.json ├── Examples-Colors │ ├── README.md │ └── sample-choose-color-01.json ├── archive-authoring-api-samples │ ├── README.md │ ├── csharp │ │ ├── ConsoleApp1.sln │ │ ├── ConsoleApp1 │ │ │ ├── App.config │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── utterances.json │ │ ├── add-utterances.cs │ │ └── utterances.json │ ├── go │ │ ├── add-utterances.go │ │ └── utterances.json │ ├── java │ │ ├── AddUtterances.java │ │ ├── gson-2.8.2.jar │ │ ├── travel-agent-sample-02.json │ │ ├── utterance-to-upload.json │ │ ├── utterances.json │ │ └── utterances.results.json │ ├── javascript │ │ └── add-utterance.html │ ├── node │ │ ├── add-single-utterance.js │ │ ├── add-utterances.js │ │ ├── build-app-programmatically-csv │ │ │ ├── IoT.csv │ │ │ ├── _create.js │ │ │ ├── _download.js │ │ │ ├── _entities.js │ │ │ ├── _intents.js │ │ │ ├── _parse.js │ │ │ ├── _upload.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── travel-agent-sample-02.json │ │ ├── utterance-to-upload.json │ │ └── utterances.json │ ├── php │ │ ├── add-utterances.php │ │ └── utterances.json │ ├── python │ │ ├── add-utterances-3-6.py │ │ ├── travel-agent-sample-02.json │ │ ├── utterance-to-upload.json │ │ └── utterances.json │ └── ruby │ │ ├── add-utterances.rb │ │ └── utterances.json ├── archive-endpoint-api-samples │ ├── README.md │ ├── csharp │ │ └── Program.cs │ ├── go │ │ └── endpoint.go │ ├── java │ │ ├── Dockerfile │ │ ├── call-endpoint.java │ │ ├── command-line.png │ │ ├── lib │ │ │ ├── commons-logging-1.2.jar │ │ │ ├── httpclient-4.5.3.jar │ │ │ └── httpcore-4.4.6.jar │ │ └── readme.md │ ├── javascript │ │ └── call-endpoint.html │ ├── node │ │ ├── .env │ │ ├── Dockerfile │ │ ├── call-endpoint.js │ │ ├── command-line.png │ │ ├── package.json │ │ └── readme.md │ ├── php │ │ └── endpoint-call.php │ ├── python │ │ ├── quickstart-call-endpoint-2-7.py │ │ └── quickstart-call-endpoint-3-6.py │ └── ruby │ │ └── endpoint-call.rb ├── authoring-api-samples │ ├── README.md │ ├── TravelAgent.json │ ├── csharp-core │ │ └── change-model │ │ │ ├── Dockerfile │ │ │ ├── Program.cs │ │ │ ├── change-model.csproj │ │ │ └── utterances.json │ ├── csharp │ │ ├── ConsoleApp1.sln │ │ └── ConsoleApp1 │ │ │ ├── App.config │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── ConsoleOutput.txt │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── packages.config │ │ │ └── utterances.json │ ├── go │ │ ├── Dockerfile │ │ ├── add-utterances.go │ │ └── utterances.json │ ├── java │ │ ├── AddUtterances.java │ │ ├── Dockerfile │ │ ├── lib │ │ │ └── gson-2.8.2.jar │ │ └── utterances.json │ ├── javascript │ │ └── add-utterance.html │ ├── node │ │ ├── Dockerfile │ │ ├── add-utterances.js │ │ ├── package.json │ │ └── utterances.json │ ├── php │ │ ├── Dockerfile │ │ ├── add-utterances.php │ │ └── utterances.json │ ├── python │ │ ├── 3.x │ │ │ ├── Dockerfile │ │ │ ├── add-utterances-3-6.py │ │ │ └── utterances.json │ │ └── add-utterances-3-6.py │ ├── ruby │ │ ├── Dockerfile │ │ ├── add-utterances.rb │ │ └── utterances.json │ └── utterances.json ├── endpoint-api-samples │ ├── README.md │ ├── csharp-core │ │ └── analyze-text │ │ │ ├── Dockerfile │ │ │ ├── Program.cs │ │ │ └── analyze-text.csproj │ ├── csharp │ │ └── Program.cs │ ├── go │ │ ├── Dockerfile │ │ └── endpoint.go │ ├── java │ │ ├── Dockerfile │ │ ├── call-endpoint.java │ │ ├── command-line.png │ │ ├── lib │ │ │ ├── commons-logging-1.2.jar │ │ │ ├── httpclient-4.5.3.jar │ │ │ └── httpcore-4.4.6.jar │ │ └── readme.md │ ├── javascript │ │ └── call-endpoint.html │ ├── node │ │ ├── .env │ │ ├── Dockerfile │ │ ├── call-endpoint.js │ │ ├── command-line.png │ │ ├── package.json │ │ └── readme.md │ ├── php │ │ ├── Dockerfile │ │ └── endpoint-call.php │ ├── python │ │ ├── 2.x │ │ │ ├── Dockerfile │ │ │ └── quickstart-call-endpoint-2-7.py │ │ ├── 3.x │ │ │ ├── Dockerfile │ │ │ └── quickstart-call-endpoint-3-6.py │ │ ├── quickstart-call-endpoint-2-7.py │ │ └── quickstart-call-endpoint-3-6.py │ └── ruby │ │ ├── Dockerfile │ │ └── endpoint-call.rb ├── entity │ └── list │ │ └── import-example.json ├── examples-IoT │ ├── IoT Quickstart with Prebuilt Domain.json │ └── readme.md ├── find-region │ ├── csharp │ │ ├── ConsoleAppLUISRegion.sln │ │ ├── ConsoleAppLUISRegion │ │ │ ├── ConsoleAppLUISRegion.csproj │ │ │ └── Program.cs │ │ └── readme.md │ └── nodejs │ │ ├── index.js │ │ ├── package.json │ │ └── readme.md ├── phrase_list │ └── interchangeable │ │ ├── luis-app-after-phrase-list.json │ │ └── luis-app-before-phrase-list.json ├── quickstarts │ ├── analyze-text │ │ ├── README.md │ │ ├── csharp-core │ │ │ └── analyze-text │ │ │ │ ├── Dockerfile │ │ │ │ ├── Program.cs │ │ │ │ └── analyze-text.csproj │ │ ├── csharp │ │ │ ├── Program.cs │ │ │ └── README.md │ │ ├── go │ │ │ ├── Dockerfile │ │ │ └── endpoint.go │ │ ├── java │ │ │ ├── Dockerfile │ │ │ ├── call-endpoint.java │ │ │ ├── command-line.png │ │ │ ├── lib │ │ │ │ ├── commons-logging-1.2.jar │ │ │ │ ├── httpclient-4.5.3.jar │ │ │ │ └── httpcore-4.4.6.jar │ │ │ └── readme.md │ │ ├── javascript │ │ │ └── call-endpoint.html │ │ ├── node │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── call-endpoint.js │ │ │ ├── command-line.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── php │ │ │ ├── Dockerfile │ │ │ └── endpoint-call.php │ │ ├── python │ │ │ ├── 2.x │ │ │ │ ├── Dockerfile │ │ │ │ └── quickstart-call-endpoint-2-7.py │ │ │ └── 3.x │ │ │ │ ├── Dockerfile │ │ │ │ └── quickstart-call-endpoint-3-6.py │ │ └── ruby │ │ │ ├── Dockerfile │ │ │ └── endpoint-call.rb │ ├── change-model │ │ ├── README.md │ │ ├── TravelAgent.json │ │ ├── csharp-core │ │ │ └── change-model │ │ │ │ ├── Dockerfile │ │ │ │ ├── Program.cs │ │ │ │ ├── change-model.csproj │ │ │ │ └── utterances.json │ │ ├── csharp │ │ │ ├── ConsoleApp1.sln │ │ │ ├── ConsoleApp1 │ │ │ │ ├── App.config │ │ │ │ ├── ConsoleApp1.csproj │ │ │ │ ├── ConsoleOutput.txt │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── packages.config │ │ │ │ └── utterances.json │ │ │ └── README.md │ │ ├── go │ │ │ ├── Dockerfile │ │ │ ├── add-utterances.go │ │ │ └── utterances.json │ │ ├── java │ │ │ ├── AddUtterances.java │ │ │ ├── Dockerfile │ │ │ ├── lib │ │ │ │ └── gson-2.8.2.jar │ │ │ └── utterances.json │ │ ├── javascript │ │ │ └── add-utterance.html │ │ ├── node │ │ │ ├── Dockerfile │ │ │ ├── add-utterances.js │ │ │ ├── package.json │ │ │ └── utterances.json │ │ ├── php │ │ │ ├── Dockerfile │ │ │ ├── add-utterances.php │ │ │ └── utterances.json │ │ ├── python │ │ │ └── 3.x │ │ │ │ ├── Dockerfile │ │ │ │ ├── add-utterances-3-6.py │ │ │ │ └── utterances.json │ │ ├── ruby │ │ │ ├── Dockerfile │ │ │ ├── add-utterances.rb │ │ │ └── utterances.json │ │ └── utterances.json │ └── job-phrase-list.csv ├── readme.md ├── tutorial-batch-testing │ ├── HumanResources-entities-batch.json │ └── HumanResources-jobs-batch.json ├── tutorial-list-entity │ ├── add-entity-list.js │ ├── package.json │ ├── publish.js │ ├── query.js │ └── train.js ├── tutorial-speech-intent-recognition │ ├── console-output.txt │ ├── csharp │ │ ├── App.config │ │ ├── HumanResources.json │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── csharp_samples.csproj │ │ ├── csharp_samples.sln │ │ └── packages.config │ └── readme.md ├── tutorial-web-app-bot-application-insights │ ├── csharp │ │ ├── BasicLuisDialog.cs │ │ └── MessagesController.cs │ └── nodejs │ │ └── app.js ├── tutorial-web-app-bot │ ├── csharp │ │ ├── BasicLuisDialog.cs │ │ └── Default_BasicLuisDialog.cs │ └── nodejs │ │ └── app.js └── tutorials │ ├── HumanResources-entities-batch.json │ ├── HumanResources-jobs-batch.json │ ├── HumanResources.json │ ├── MyCommunicator.json │ ├── MyStore.json │ ├── custom-domain-batchtest-HumanResources.json │ ├── custom-domain-composite-HumanResources.json │ ├── custom-domain-hier-HumanResources.json │ ├── custom-domain-intent-only-HumanResources.json │ ├── custom-domain-keyphrase-HumanResources.json │ ├── custom-domain-list-HumanResources.json │ ├── custom-domain-pattern-roles-HumanResources.json │ ├── custom-domain-patterns-HumanResources-before-pattern-after-utterances.json │ ├── custom-domain-patterns-HumanResources-v2.json │ ├── custom-domain-patterns-HumanResources.json │ ├── custom-domain-patterns-any-HumanResources.json │ ├── custom-domain-prebuilts-HumanResources.json │ ├── custom-domain-regex-HumanResources.json │ ├── custom-domain-review-HumanResources.json │ ├── custom-domain-sentiment-HumanResources.json │ ├── custom-domain-simple-HumanResources.json │ ├── endpoint-utterances-Human-Resources.json │ └── job-phrase-list.csv ├── examples ├── README.md ├── async-query-log │ └── nodejs │ │ ├── README.md │ │ ├── getQueryLog.js │ │ └── package.json ├── azure-function-application-insights-endpoint │ ├── function.json │ ├── media │ │ ├── appInsights.png │ │ ├── dependency-details.png │ │ ├── portal.png │ │ └── search.png │ ├── project.json │ ├── readme.md │ ├── results.json │ ├── run.csx │ └── run.original.csx ├── azure-function-endpoint │ ├── function-app-vs.png │ ├── function.json │ ├── readme.md │ └── run.csx ├── backup │ ├── .gitignore │ ├── backup.js │ ├── package.json │ └── readme.md ├── bing-spell-check │ └── javascript │ │ ├── call-endpoint.html │ │ ├── readme.md │ │ └── screenshot.png ├── build-app-programmatically-csv │ ├── IoT.csv │ ├── README.md │ ├── _create.js │ ├── _download.js │ ├── _entities.js │ ├── _intents.js │ ├── _parse.js │ ├── _upload.js │ ├── images │ │ ├── csv.png │ │ ├── download-querylog.png │ │ └── imported-utterances.png │ ├── index.js │ └── package.json ├── createFromPrebuiltDomain │ ├── index.js │ └── package.json ├── demo-upload-endpoint-utterances │ ├── endpoint.js │ └── package.json ├── demo-upload-example-utterances │ ├── README.md │ ├── demo-Upload-utterances-from-querylog │ │ ├── README.md │ │ ├── _download.js │ │ ├── _parse.js │ │ ├── _upload.js │ │ ├── example-files │ │ │ ├── utterances.csv │ │ │ ├── utterances.json │ │ │ └── utterances.upload.json │ │ ├── index.js │ │ ├── media │ │ │ └── download-querylog.png │ │ └── package.json │ └── demo-upload-utterances-from-exported-luis-app │ │ ├── README.md │ │ ├── _parse.js │ │ ├── _upload.js │ │ ├── example-files │ │ ├── app_defintion.json │ │ ├── exported-luis-app-utterances.json │ │ ├── utterances.json │ │ └── utterances.upload.json │ │ ├── index.js │ │ ├── media │ │ └── export-app-data.png │ │ └── package.json ├── deprecated │ ├── README.md │ └── pattern-feature │ │ ├── README.md │ │ └── hyphenated-names.json ├── example-app-models │ ├── 1.x │ │ └── LuisBot.json │ └── custom │ │ ├── FoodTruck.json │ │ ├── HomeAutomation.json │ │ └── TravelAgent.json ├── notes-app │ ├── csharp │ │ ├── NoteApp.sln │ │ ├── NoteApp │ │ │ ├── NoteApp.csproj │ │ │ └── Program.cs │ │ └── readme.md │ └── node │ │ ├── .env │ │ ├── Dockerfile │ │ ├── notes.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── readme.md ├── phrase_list │ ├── Phrase_List.json │ ├── README.md │ └── screenshots │ │ ├── AddingValuestoWantPhraseList.PNG │ │ ├── IRequireAComputerReplacement_AfterPhraseList.PNG │ │ ├── IRequireAComputerReplacement_BeforePhraseList.PNG │ │ ├── PhraseListStart.PNG │ │ └── PhraseList_RelatedValues.PNG ├── simple-bot-example │ ├── FirstSimpleBotExample.json │ ├── README.md │ └── WeatherOrHomeAutomation.json └── upgrading_luis_tier │ └── README.md └── media └── docker-logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /authoring-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/authoring-routes.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/README.md -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Dialogs/RootLuisDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Dialogs/RootLuisDialog.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Global.asax -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Global.asax.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Hotel.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/HotelsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/HotelsQuery.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/LuisBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/LuisBot.csproj -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/LuisBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/LuisBot.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/LuisBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/LuisBot.sln -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/README.md -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckError.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckFlaggedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckFlaggedToken.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckResponse.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckService.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Services/BingSpellCheckSuggestion.cs -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Web.Debug.config -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Web.Release.config -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/Web.config -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/azuredeploy.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/default.htm -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/bot-emulator-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/bot-emulator-result.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/bot-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/bot-screenshot.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/highlights-phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/highlights-phrase.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/highlights-regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/highlights-regex.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/import-new-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/import-new-app.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/outcome.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/prereqs-apikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/prereqs-apikey.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/prereqs-appid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/prereqs-appid.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/images/prereqs-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/images/prereqs-import.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/obj/Debug/LuisBot.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2f7e15e9aad052ac5751d14453fd7059fc4b12a4 2 | -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/csharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/csharp/packages.config -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/.env -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/LuisBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/LuisBot.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/README.md -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/app.js -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/azuredeploy.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/images/highlights-phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/images/highlights-phrase.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/images/highlights-regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/images/highlights-regex.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/images/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/images/outcome.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/images/prereqs-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/images/prereqs-import.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/images/prereqs-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/images/prereqs-publish.png -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/package.json -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/spell-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/spell-service.js -------------------------------------------------------------------------------- /bot-integration-samples/hotel-finder/nodejs/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/bot-integration-samples/hotel-finder/nodejs/store.js -------------------------------------------------------------------------------- /community-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/community-projects.md -------------------------------------------------------------------------------- /documentation-samples/Examples-BookFlight/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-BookFlight/readme.md -------------------------------------------------------------------------------- /documentation-samples/Examples-BookFlight/travel-agent-sample-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-BookFlight/travel-agent-sample-01.json -------------------------------------------------------------------------------- /documentation-samples/Examples-BookFlight/travel-agent-sample-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-BookFlight/travel-agent-sample-02.json -------------------------------------------------------------------------------- /documentation-samples/Examples-BookFlight/utterance-to-upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-BookFlight/utterance-to-upload.json -------------------------------------------------------------------------------- /documentation-samples/Examples-Colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-Colors/README.md -------------------------------------------------------------------------------- /documentation-samples/Examples-Colors/sample-choose-color-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/Examples-Colors/sample-choose-color-01.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/README.md -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1.sln -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/App.config -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/ConsoleApp1/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/add-utterances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/add-utterances.cs -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/csharp/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/csharp/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/go/add-utterances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/go/add-utterances.go -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/go/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/go/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/AddUtterances.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/AddUtterances.java -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/gson-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/gson-2.8.2.jar -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/travel-agent-sample-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/travel-agent-sample-02.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/utterance-to-upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/utterance-to-upload.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/java/utterances.results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/java/utterances.results.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/javascript/add-utterance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/javascript/add-utterance.html -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/add-single-utterance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/add-single-utterance.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/add-utterances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/add-utterances.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/IoT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/IoT.csv -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_create.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_download.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_entities.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_intents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_intents.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_parse.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/_upload.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/index.js -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/build-app-programmatically-csv/package.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/package.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/travel-agent-sample-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/travel-agent-sample-02.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/utterance-to-upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/utterance-to-upload.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/node/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/node/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/php/add-utterances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/php/add-utterances.php -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/php/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/php/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/python/add-utterances-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/python/add-utterances-3-6.py -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/python/travel-agent-sample-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/python/travel-agent-sample-02.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/python/utterance-to-upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/python/utterance-to-upload.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/python/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/python/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/ruby/add-utterances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/ruby/add-utterances.rb -------------------------------------------------------------------------------- /documentation-samples/archive-authoring-api-samples/ruby/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-authoring-api-samples/ruby/utterances.json -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/README.md -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/csharp/Program.cs -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/go/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/go/endpoint.go -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/call-endpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/call-endpoint.java -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/command-line.png -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/lib/httpclient-4.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/lib/httpclient-4.5.3.jar -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/lib/httpcore-4.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/lib/httpcore-4.4.6.jar -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/java/readme.md -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/javascript/call-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/javascript/call-endpoint.html -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/.env -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/call-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/call-endpoint.js -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/command-line.png -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/package.json -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/node/readme.md -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/php/endpoint-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/php/endpoint-call.php -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/python/quickstart-call-endpoint-2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/python/quickstart-call-endpoint-2-7.py -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/python/quickstart-call-endpoint-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/python/quickstart-call-endpoint-3-6.py -------------------------------------------------------------------------------- /documentation-samples/archive-endpoint-api-samples/ruby/endpoint-call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/archive-endpoint-api-samples/ruby/endpoint-call.rb -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/README.md -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/TravelAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/TravelAgent.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp-core/change-model/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp-core/change-model/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp-core/change-model/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp-core/change-model/Program.cs -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp-core/change-model/change-model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp-core/change-model/change-model.csproj -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp-core/change-model/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp-core/change-model/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1.sln -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/App.config -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/ConsoleOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/ConsoleOutput.txt -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/packages.config -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/csharp/ConsoleApp1/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/csharp/ConsoleApp1/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/go/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/go/add-utterances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/go/add-utterances.go -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/go/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/go/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/java/AddUtterances.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/java/AddUtterances.java -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/java/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/java/lib/gson-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/java/lib/gson-2.8.2.jar -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/java/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/java/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/javascript/add-utterance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/javascript/add-utterance.html -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/node/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/node/add-utterances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/node/add-utterances.js -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/node/package.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/node/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/node/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/php/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/php/add-utterances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/php/add-utterances.php -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/php/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/php/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/python/3.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/python/3.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/python/3.x/add-utterances-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/python/3.x/add-utterances-3-6.py -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/python/3.x/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/python/3.x/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/python/add-utterances-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/python/add-utterances-3-6.py -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/ruby/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/ruby/add-utterances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/ruby/add-utterances.rb -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/ruby/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/ruby/utterances.json -------------------------------------------------------------------------------- /documentation-samples/authoring-api-samples/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/authoring-api-samples/utterances.json -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/README.md -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/csharp-core/analyze-text/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/csharp-core/analyze-text/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/csharp-core/analyze-text/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/csharp-core/analyze-text/Program.cs -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/csharp-core/analyze-text/analyze-text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/csharp-core/analyze-text/analyze-text.csproj -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/csharp/Program.cs -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/go/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/go/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/go/endpoint.go -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/call-endpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/call-endpoint.java -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/command-line.png -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/lib/httpclient-4.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/lib/httpclient-4.5.3.jar -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/lib/httpcore-4.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/lib/httpcore-4.4.6.jar -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/java/readme.md -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/javascript/call-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/javascript/call-endpoint.html -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/.env -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/call-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/call-endpoint.js -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/command-line.png -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/package.json -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/node/readme.md -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/php/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/php/endpoint-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/php/endpoint-call.php -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/2.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/2.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/2.x/quickstart-call-endpoint-2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/2.x/quickstart-call-endpoint-2-7.py -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/3.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/3.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/3.x/quickstart-call-endpoint-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/3.x/quickstart-call-endpoint-3-6.py -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/quickstart-call-endpoint-2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/quickstart-call-endpoint-2-7.py -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/python/quickstart-call-endpoint-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/python/quickstart-call-endpoint-3-6.py -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/ruby/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/endpoint-api-samples/ruby/endpoint-call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/endpoint-api-samples/ruby/endpoint-call.rb -------------------------------------------------------------------------------- /documentation-samples/entity/list/import-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/entity/list/import-example.json -------------------------------------------------------------------------------- /documentation-samples/examples-IoT/IoT Quickstart with Prebuilt Domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/examples-IoT/IoT Quickstart with Prebuilt Domain.json -------------------------------------------------------------------------------- /documentation-samples/examples-IoT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/examples-IoT/readme.md -------------------------------------------------------------------------------- /documentation-samples/find-region/csharp/ConsoleAppLUISRegion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/csharp/ConsoleAppLUISRegion.sln -------------------------------------------------------------------------------- /documentation-samples/find-region/csharp/ConsoleAppLUISRegion/ConsoleAppLUISRegion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/csharp/ConsoleAppLUISRegion/ConsoleAppLUISRegion.csproj -------------------------------------------------------------------------------- /documentation-samples/find-region/csharp/ConsoleAppLUISRegion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/csharp/ConsoleAppLUISRegion/Program.cs -------------------------------------------------------------------------------- /documentation-samples/find-region/csharp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/csharp/readme.md -------------------------------------------------------------------------------- /documentation-samples/find-region/nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/nodejs/index.js -------------------------------------------------------------------------------- /documentation-samples/find-region/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/nodejs/package.json -------------------------------------------------------------------------------- /documentation-samples/find-region/nodejs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/find-region/nodejs/readme.md -------------------------------------------------------------------------------- /documentation-samples/phrase_list/interchangeable/luis-app-after-phrase-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/phrase_list/interchangeable/luis-app-after-phrase-list.json -------------------------------------------------------------------------------- /documentation-samples/phrase_list/interchangeable/luis-app-before-phrase-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/phrase_list/interchangeable/luis-app-before-phrase-list.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/README.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/Program.cs -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/analyze-text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/csharp-core/analyze-text/analyze-text.csproj -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/csharp/Program.cs -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/csharp/README.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/go/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/go/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/go/endpoint.go -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/call-endpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/call-endpoint.java -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/command-line.png -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/lib/httpclient-4.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/lib/httpclient-4.5.3.jar -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/lib/httpcore-4.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/lib/httpcore-4.4.6.jar -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/java/readme.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/javascript/call-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/javascript/call-endpoint.html -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/.env -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/call-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/call-endpoint.js -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/command-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/command-line.png -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/package.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/node/readme.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/php/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/php/endpoint-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/php/endpoint-call.php -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/python/2.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/python/2.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/python/2.x/quickstart-call-endpoint-2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/python/2.x/quickstart-call-endpoint-2-7.py -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/python/3.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/python/3.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/python/3.x/quickstart-call-endpoint-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/python/3.x/quickstart-call-endpoint-3-6.py -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/ruby/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/analyze-text/ruby/endpoint-call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/analyze-text/ruby/endpoint-call.rb -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/README.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/TravelAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/TravelAgent.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp-core/change-model/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp-core/change-model/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp-core/change-model/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp-core/change-model/Program.cs -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp-core/change-model/change-model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp-core/change-model/change-model.csproj -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp-core/change-model/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp-core/change-model/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1.sln -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/App.config -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/ConsoleOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/ConsoleOutput.txt -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/packages.config -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/ConsoleApp1/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/csharp/README.md -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/go/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/go/add-utterances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/go/add-utterances.go -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/go/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/go/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/java/AddUtterances.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/java/AddUtterances.java -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/java/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/java/lib/gson-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/java/lib/gson-2.8.2.jar -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/java/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/java/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/javascript/add-utterance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/javascript/add-utterance.html -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/node/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/node/add-utterances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/node/add-utterances.js -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/node/package.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/node/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/node/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/php/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/php/add-utterances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/php/add-utterances.php -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/php/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/php/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/python/3.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/python/3.x/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/python/3.x/add-utterances-3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/python/3.x/add-utterances-3-6.py -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/python/3.x/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/python/3.x/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/ruby/Dockerfile -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/ruby/add-utterances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/ruby/add-utterances.rb -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/ruby/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/ruby/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/change-model/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/change-model/utterances.json -------------------------------------------------------------------------------- /documentation-samples/quickstarts/job-phrase-list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/quickstarts/job-phrase-list.csv -------------------------------------------------------------------------------- /documentation-samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/readme.md -------------------------------------------------------------------------------- /documentation-samples/tutorial-batch-testing/HumanResources-entities-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-batch-testing/HumanResources-entities-batch.json -------------------------------------------------------------------------------- /documentation-samples/tutorial-batch-testing/HumanResources-jobs-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-batch-testing/HumanResources-jobs-batch.json -------------------------------------------------------------------------------- /documentation-samples/tutorial-list-entity/add-entity-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-list-entity/add-entity-list.js -------------------------------------------------------------------------------- /documentation-samples/tutorial-list-entity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-list-entity/package.json -------------------------------------------------------------------------------- /documentation-samples/tutorial-list-entity/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-list-entity/publish.js -------------------------------------------------------------------------------- /documentation-samples/tutorial-list-entity/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-list-entity/query.js -------------------------------------------------------------------------------- /documentation-samples/tutorial-list-entity/train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-list-entity/train.js -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/console-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/console-output.txt -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/App.config -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/Program.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/csharp_samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/csharp_samples.csproj -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/csharp_samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/csharp_samples.sln -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/csharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/csharp/packages.config -------------------------------------------------------------------------------- /documentation-samples/tutorial-speech-intent-recognition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-speech-intent-recognition/readme.md -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot-application-insights/csharp/BasicLuisDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot-application-insights/csharp/BasicLuisDialog.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot-application-insights/csharp/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot-application-insights/csharp/MessagesController.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot-application-insights/nodejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot-application-insights/nodejs/app.js -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot/csharp/BasicLuisDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot/csharp/BasicLuisDialog.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot/csharp/Default_BasicLuisDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot/csharp/Default_BasicLuisDialog.cs -------------------------------------------------------------------------------- /documentation-samples/tutorial-web-app-bot/nodejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorial-web-app-bot/nodejs/app.js -------------------------------------------------------------------------------- /documentation-samples/tutorials/HumanResources-entities-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/HumanResources-entities-batch.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/HumanResources-jobs-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/HumanResources-jobs-batch.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/MyCommunicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/MyCommunicator.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/MyStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/MyStore.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-batchtest-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-batchtest-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-composite-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-composite-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-hier-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-hier-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-intent-only-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-intent-only-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-keyphrase-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-keyphrase-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-list-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-list-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-pattern-roles-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-pattern-roles-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-patterns-HumanResources-before-pattern-after-utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-patterns-HumanResources-before-pattern-after-utterances.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-patterns-HumanResources-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-patterns-HumanResources-v2.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-patterns-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-patterns-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-patterns-any-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-patterns-any-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-prebuilts-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-prebuilts-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-regex-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-regex-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-review-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-review-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-sentiment-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-sentiment-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/custom-domain-simple-HumanResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/custom-domain-simple-HumanResources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/endpoint-utterances-Human-Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/endpoint-utterances-Human-Resources.json -------------------------------------------------------------------------------- /documentation-samples/tutorials/job-phrase-list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/documentation-samples/tutorials/job-phrase-list.csv -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/async-query-log/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/async-query-log/nodejs/README.md -------------------------------------------------------------------------------- /examples/async-query-log/nodejs/getQueryLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/async-query-log/nodejs/getQueryLog.js -------------------------------------------------------------------------------- /examples/async-query-log/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/async-query-log/nodejs/package.json -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/function.json -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/media/appInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/media/appInsights.png -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/media/dependency-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/media/dependency-details.png -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/media/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/media/portal.png -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/media/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/media/search.png -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/project.json -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/readme.md -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/results.json -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/run.csx -------------------------------------------------------------------------------- /examples/azure-function-application-insights-endpoint/run.original.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-application-insights-endpoint/run.original.csx -------------------------------------------------------------------------------- /examples/azure-function-endpoint/function-app-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-endpoint/function-app-vs.png -------------------------------------------------------------------------------- /examples/azure-function-endpoint/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-endpoint/function.json -------------------------------------------------------------------------------- /examples/azure-function-endpoint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-endpoint/readme.md -------------------------------------------------------------------------------- /examples/azure-function-endpoint/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/azure-function-endpoint/run.csx -------------------------------------------------------------------------------- /examples/backup/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /examples/backup/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/backup/backup.js -------------------------------------------------------------------------------- /examples/backup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/backup/package.json -------------------------------------------------------------------------------- /examples/backup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/backup/readme.md -------------------------------------------------------------------------------- /examples/bing-spell-check/javascript/call-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/bing-spell-check/javascript/call-endpoint.html -------------------------------------------------------------------------------- /examples/bing-spell-check/javascript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/bing-spell-check/javascript/readme.md -------------------------------------------------------------------------------- /examples/bing-spell-check/javascript/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/bing-spell-check/javascript/screenshot.png -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/IoT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/IoT.csv -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/README.md -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_create.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_download.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_entities.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_intents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_intents.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_parse.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/_upload.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/images/csv.png -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/images/download-querylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/images/download-querylog.png -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/images/imported-utterances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/images/imported-utterances.png -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/index.js -------------------------------------------------------------------------------- /examples/build-app-programmatically-csv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/build-app-programmatically-csv/package.json -------------------------------------------------------------------------------- /examples/createFromPrebuiltDomain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/createFromPrebuiltDomain/index.js -------------------------------------------------------------------------------- /examples/createFromPrebuiltDomain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/createFromPrebuiltDomain/package.json -------------------------------------------------------------------------------- /examples/demo-upload-endpoint-utterances/endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-endpoint-utterances/endpoint.js -------------------------------------------------------------------------------- /examples/demo-upload-endpoint-utterances/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-endpoint-utterances/package.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/README.md -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/README.md -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_download.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_parse.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/_upload.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.csv -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/example-files/utterances.upload.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/index.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/media/download-querylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/media/download-querylog.png -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-Upload-utterances-from-querylog/package.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/README.md -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/_parse.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/_upload.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/app_defintion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/app_defintion.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/exported-luis-app-utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/exported-luis-app-utterances.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/utterances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/utterances.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/utterances.upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/example-files/utterances.upload.json -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/index.js -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/media/export-app-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/media/export-app-data.png -------------------------------------------------------------------------------- /examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/demo-upload-example-utterances/demo-upload-utterances-from-exported-luis-app/package.json -------------------------------------------------------------------------------- /examples/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/deprecated/README.md -------------------------------------------------------------------------------- /examples/deprecated/pattern-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/deprecated/pattern-feature/README.md -------------------------------------------------------------------------------- /examples/deprecated/pattern-feature/hyphenated-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/deprecated/pattern-feature/hyphenated-names.json -------------------------------------------------------------------------------- /examples/example-app-models/1.x/LuisBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/example-app-models/1.x/LuisBot.json -------------------------------------------------------------------------------- /examples/example-app-models/custom/FoodTruck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/example-app-models/custom/FoodTruck.json -------------------------------------------------------------------------------- /examples/example-app-models/custom/HomeAutomation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/example-app-models/custom/HomeAutomation.json -------------------------------------------------------------------------------- /examples/example-app-models/custom/TravelAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/example-app-models/custom/TravelAgent.json -------------------------------------------------------------------------------- /examples/notes-app/csharp/NoteApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/csharp/NoteApp.sln -------------------------------------------------------------------------------- /examples/notes-app/csharp/NoteApp/NoteApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/csharp/NoteApp/NoteApp.csproj -------------------------------------------------------------------------------- /examples/notes-app/csharp/NoteApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/csharp/NoteApp/Program.cs -------------------------------------------------------------------------------- /examples/notes-app/csharp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/csharp/readme.md -------------------------------------------------------------------------------- /examples/notes-app/node/.env: -------------------------------------------------------------------------------- 1 | LUIS_SUBSCRIPTION_KEY= -------------------------------------------------------------------------------- /examples/notes-app/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/node/Dockerfile -------------------------------------------------------------------------------- /examples/notes-app/node/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/node/notes.js -------------------------------------------------------------------------------- /examples/notes-app/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/node/package-lock.json -------------------------------------------------------------------------------- /examples/notes-app/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/node/package.json -------------------------------------------------------------------------------- /examples/notes-app/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/notes-app/node/readme.md -------------------------------------------------------------------------------- /examples/phrase_list/Phrase_List.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/Phrase_List.json -------------------------------------------------------------------------------- /examples/phrase_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/README.md -------------------------------------------------------------------------------- /examples/phrase_list/screenshots/AddingValuestoWantPhraseList.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/screenshots/AddingValuestoWantPhraseList.PNG -------------------------------------------------------------------------------- /examples/phrase_list/screenshots/IRequireAComputerReplacement_AfterPhraseList.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/screenshots/IRequireAComputerReplacement_AfterPhraseList.PNG -------------------------------------------------------------------------------- /examples/phrase_list/screenshots/IRequireAComputerReplacement_BeforePhraseList.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/screenshots/IRequireAComputerReplacement_BeforePhraseList.PNG -------------------------------------------------------------------------------- /examples/phrase_list/screenshots/PhraseListStart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/screenshots/PhraseListStart.PNG -------------------------------------------------------------------------------- /examples/phrase_list/screenshots/PhraseList_RelatedValues.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/phrase_list/screenshots/PhraseList_RelatedValues.PNG -------------------------------------------------------------------------------- /examples/simple-bot-example/FirstSimpleBotExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/simple-bot-example/FirstSimpleBotExample.json -------------------------------------------------------------------------------- /examples/simple-bot-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/simple-bot-example/README.md -------------------------------------------------------------------------------- /examples/simple-bot-example/WeatherOrHomeAutomation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/simple-bot-example/WeatherOrHomeAutomation.json -------------------------------------------------------------------------------- /examples/upgrading_luis_tier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/examples/upgrading_luis_tier/README.md -------------------------------------------------------------------------------- /media/docker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/LUIS-Samples/HEAD/media/docker-logo.png --------------------------------------------------------------------------------