├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bot-framework-bug.md │ └── bot-framework-feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── issue_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Common ├── Telemetry │ └── README.md ├── Transcripts │ ├── CoreExtensionsTests │ │ ├── ConversationStateTest.chat │ │ ├── CustomStateTest.chat │ │ └── UserStateTest.chat │ ├── CoreTests │ │ └── BotAdapted_Bracketing.chat │ ├── DialogsTests │ │ ├── AttachmentPrompt.chat │ │ ├── ChoicePrompt.chat │ │ ├── ConfirmPrompt.chat │ │ ├── ContentAttachment.json │ │ ├── DateTimePrompt.chat │ │ ├── NumberPrompt.chat │ │ ├── TextPrompt.chat │ │ ├── Waterfall.chat │ │ ├── WaterfallNested.chat │ │ └── WaterfallPrompt.chat │ ├── LuisTests │ │ └── LuisMiddleware.chat │ ├── QnATests │ │ └── QnAMiddleware.chat │ ├── README.md │ └── TranslationTests │ │ ├── LocaleConvertToEnglish.chat │ │ ├── TranslateToEnglish.chat │ │ └── TranslateToUserLanguage.chat └── badges │ ├── BotBuilderBadge.md │ ├── ic_bot_framework - white.svg │ └── ic_bot_framework.svg ├── Contributing.md ├── LICENSE ├── Orchestrator ├── README.md ├── Samples │ ├── CLI │ │ └── ModelTuning │ │ │ ├── README.md │ │ │ ├── common.fixed.lu │ │ │ ├── common.lu │ │ │ ├── common.test.lu │ │ │ ├── comparedLU.png │ │ │ ├── demo.cmd │ │ │ ├── reportafter.png │ │ │ └── reportbefore.png │ └── dotnet │ │ └── nlp-with-entities │ │ ├── .gitignore │ │ ├── AdapterWithErrorHandler.cs │ │ ├── BotServices.cs │ │ ├── Bots │ │ └── DispatchBot.cs │ │ ├── CognitiveModels │ │ ├── HomeAutomation.lu │ │ ├── QnAMaker.qna │ │ └── Weather.lu │ │ ├── Controllers │ │ └── BotController.cs │ │ ├── IBotServices.cs │ │ ├── OrchestratorConfig.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ ├── nlp-with-entities.csproj │ │ └── wwwroot │ │ └── default.html ├── docs │ ├── BFOrchestratorInteractive.md │ ├── BFOrchestratorReport.md │ ├── BFOrchestratorUsage.md │ ├── DispatchMigrationExample.md │ ├── FAQ.md │ ├── LICENSE.md │ ├── LUFormat.md │ ├── NLRModels.md │ ├── Orchestrator Intro.pptx │ ├── Overview.md │ ├── media │ │ ├── EvaluationReportTabEmailAmbiguous.png │ │ ├── EvaluationReportTabEmailIntentUtteranceStatistics.png │ │ ├── EvaluationReportTabEmailLowConfidence.png │ │ ├── EvaluationReportTabEmailMetrics.png │ │ ├── EvaluationReportTabEmailMisclassified.png │ │ ├── EvaluationReportTabEmailUtteranceDuplicates.png │ │ ├── EvaluationReportTabVaAmbiguous.png │ │ ├── EvaluationReportTabVaIntentUtteranceStatistics.png │ │ ├── EvaluationReportTabVaLowConfidence.png │ │ ├── EvaluationReportTabVaMetrics.png │ │ ├── EvaluationReportTabVaMisclassified.png │ │ ├── EvaluationReportTabVaUtteranceDuplicates.png │ │ ├── authoring.png │ │ └── dispatch-logic-flow.png │ └── package │ │ └── README.md ├── v0.1 │ ├── nlr_versions.json │ └── nlr_versions.schema └── v0.2 │ ├── nlr_versions.json │ └── nlr_versions.schema ├── README.md ├── SECURITY.md ├── codeql3000.yml ├── docs ├── BF Labeling Guide.md ├── CUX Guide Microsoft.pdf ├── media │ ├── BotFrameworkSDK.png │ ├── GitHubBannerV2.gif │ └── UserFlowsAppInsights.jpg └── umlDiagrams │ ├── ActivityFlow │ ├── BFServiceAndBotDetails │ │ ├── BFServiceAndBotDetails.svg │ │ └── BFServiceAndBotDetails_DiagramSource.md │ ├── BotFrameworkAdapterFlow │ │ ├── BFAdapterActivityFlow.svg │ │ └── BFAdapterActivityFlow_DiagramSource.md │ ├── CustomAdapterFlow │ │ ├── BufferingWithCustomAdapter.svg │ │ ├── BufferingWithCustomAdapter_DiagramSource.md │ │ ├── CustomAdapterActivityFlow.svg │ │ └── CustomAdapterActivityFlow_DiagramSource.md │ ├── DetailedSdkFlow │ │ ├── DetailedSdkFlow.md │ │ ├── DetailedSdkFlow.svg │ │ └── DetailedSdkFlow_DiagramSource.md │ ├── GeneralActivityFlow.md │ ├── GeneralActivityFlow.svg │ ├── GeneralActivityFlow_DiagramSource.md │ ├── ParticipantsInActivityFlow.png │ └── README.md │ └── Authentication │ ├── AddingAuthenticationToYourBot │ ├── AddAuthenticationToYourBotViaABS │ │ ├── DetailedView.svg │ │ ├── DetailedView_DiagramSource.md │ │ ├── HigherLevel.svg │ │ └── HigherLevel_DiagramSource.md │ └── UserAuthenticationWithinAConversation │ │ ├── AuthenticationDocExample_Goal.svg │ │ ├── AuthenticationDocExample_Goal_DiagramSource.md │ │ ├── AuthenticationDocExample_OAuthFlow_HasTokenInStorage.svg │ │ ├── AuthenticationDocExample_OAuthFlow_HasTokenInStorage_DiagramSource.md │ │ ├── AuthenticationDocExample_OAuthFlow_NoTokenToStart.svg │ │ └── AuthenticationDocExample_OAuthFlow_NoTokenToStart_DiagramSource.md │ ├── AuthArchitectureInBotFramework │ └── OAuthPrompt │ │ ├── AdapterSavedAsTurnContextMember.svg │ │ ├── AdapterSavedAsTurnContextMember_DiagramSource.md │ │ ├── BotFrameworkAdapterCreatesOAuthClient.svg │ │ ├── BotFrameworkAdapterCreatesOAuthClient_DiagramSource.md │ │ ├── BotFrameworkAdapterCreatesTokenApiClient.svg │ │ ├── BotFrameworkAdapterCreatesTokenApiClient_DiagramSource.md │ │ ├── BuildAppCredentialsParticipants.svg │ │ ├── BuildAppCredentialsParticipants_DiagramSource.md │ │ ├── CSharp_AppCredentialsClassDiagram.svg │ │ ├── CSharp_AppCredentialsClassDiagram_DiagramSource.md │ │ ├── CSharp_OAuthPromptAndTokenProvider.svg │ │ ├── CSharp_OAuthPromptAndTokenProvider_DiagramSource.md │ │ ├── CSharp_UseAppCredentialsToCreateOAuthClient.svg │ │ ├── CSharp_UseAppCredentialsToCreateOAuthClient_DiagramSource.md │ │ ├── CreateOAuthClientFlowChart.svg │ │ ├── CreatingOAuthClientInMoreDetail.md │ │ ├── CreatingOAuthClientInMoreDetail_DiagramSource.md │ │ ├── GetUserTokenSequenceDiagram.md │ │ ├── JS_AppCredentialsClassDiagram.svg │ │ ├── JS_AppCredentialsClassDiagram_DiagramSource.md │ │ ├── JS_OAuthPromptAndTokenProvider.svg │ │ ├── JS_OAuthPromptAndTokenProvider_DiagramSource.md │ │ ├── JS_UseAppCredentialsToCreateTokenApiClient.svg │ │ ├── JS_UseAppCredentialsToCreateTokenApiClient_DiagramSource.md │ │ ├── OAuthClientClassDiagram.svg │ │ ├── OAuthClientClassDiagram_DiagramSource.md │ │ ├── OAuthPromptClassDiagrams.md │ │ ├── ProcessActivityCreatesTurnContext.svg │ │ ├── ProcessActivityCreatesTurnContext_DiagramSource.md │ │ ├── SecondStepGettingAppCredentials.svg │ │ ├── TakesAdapterFromTurnContext.svg │ │ ├── TakesAdapterFromTurnContext_DiagramSource.md │ │ ├── TokenApiClientClassDiagram.svg │ │ └── TokenApiClientClassDiagram_DiagramSource.md │ ├── ChannelToBot │ ├── AuthenticateRequest.svg │ ├── AuthenticateRequestOverview_DiagramSource.md │ ├── AuthenticateRequest_DiagramSource.md │ ├── ChannelActingOnBehalfOfSelf.svg │ ├── ChannelActingOnBehalfOfSelf_DiagramSource.md │ ├── ChannelActivingOnBehalfOfUser.svg │ ├── ChannelActivingOnBehalfOfUser_DiagramSource.md │ ├── ChannelToABSLayerToBot_DiagramSource.md │ ├── ChannelsToABSLayerToBot.svg │ ├── HigherLevel_TokenAuthentication.svg │ ├── HigherLevel_TokenAuthentication_DiagramSource.md │ ├── JwtAnatomy.png │ ├── JwtTokenValidationClassDiagram.svg │ ├── JwtTokenValidationClassDiagram_DiagramSource.md │ ├── README.md │ ├── RsaKeys.png │ ├── SimpleChannelWithTokenToBot.svg │ ├── SimpleChannelWithTokenToBot_DiagramSource.md │ ├── TokenSignatureParticipants.svg │ ├── TokenSignatureParticipants_DiagramSource.md │ ├── WhyHelloBot.svg │ └── WhyHelloBot_DiagramSource.md │ ├── HighLevelAuthFlow │ ├── AuthServerAuthenticatesUser.svg │ ├── AuthServerAuthenticatesUser_DiagramSource.md │ ├── AuthServerIssuesTokenToBot.svg │ ├── AuthServerIssuesTokenToBot_DiagramSource.md │ ├── GiveBotAccessToProtectedResource.svg │ ├── GiveBotAccessToProtectedResource_DiagramSource.md │ ├── HighLevelAuthFlowSequenceDiagram.svg │ └── HighLevelAuthFlowSequenceDiagram_DiagramSource.md │ ├── OAuthPrompt │ ├── OAuthPrompt_BeginDialog.svg │ ├── OAuthPrompt_BeginDialog_DiagramSource.md │ ├── OAuthPrompt_ContinueDialog_DetailedView.svg │ ├── OAuthPrompt_ContinueDialog_DetailedView_DiagramSource.md │ ├── OAuthPrompt_ContinueDialog_HigherLevel.svg │ ├── OAuthPrompt_ContinueDialog_HigherLevel_DiagramSource.md │ └── README.md │ └── README.md ├── dri ├── .gitignore ├── README.md ├── helpers.py ├── output.py ├── report.py └── requirements.txt ├── icon.png ├── parsers └── LU │ ├── ANTLR │ ├── LUFileLexer.g4 │ └── LUFileParser.g4 │ └── JS │ ├── build │ ├── bf-cli-build-test-steps.yml │ ├── botframework-cli-azure-devops.yml │ ├── botframework-cli-beta.yml │ ├── botframework-cli-daily.yml │ ├── botframework-cli-mac.yml │ ├── botframework-cli-rc.yml │ ├── botframework-cli-version.yml │ └── botframework-cli.yml │ ├── common │ ├── config │ │ └── rush │ │ │ ├── .npmrc │ │ │ ├── command-line.json │ │ │ ├── common-versions.json │ │ │ ├── experiments.json │ │ │ ├── pnpm-lock.yaml │ │ │ ├── pnpmfile.js │ │ │ └── version-policies.json │ └── scripts │ │ ├── install-run-rush.js │ │ ├── install-run-rushx.js │ │ ├── install-run.js │ │ └── version-and-pack.js │ ├── packages │ └── lu │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .nycrc │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── index.ts │ │ ├── parser │ │ │ ├── composerindex.js │ │ │ ├── converters │ │ │ │ ├── helpers │ │ │ │ │ └── writer.js │ │ │ │ ├── luistocsconverter.js │ │ │ │ └── luistotsconverter.js │ │ │ ├── cross-train │ │ │ │ ├── confighelper.js │ │ │ │ ├── cross-train.js │ │ │ │ └── crossTrainer.js │ │ │ ├── index.js │ │ │ ├── lu │ │ │ │ ├── lu.js │ │ │ │ ├── luMerger.js │ │ │ │ ├── luOptions.js │ │ │ │ ├── qna.js │ │ │ │ └── qnaOptions.js │ │ │ ├── lubuild │ │ │ │ ├── builder.ts │ │ │ │ ├── core.ts │ │ │ │ ├── cross-trained-recognizer.ts │ │ │ │ ├── multi-language-recognizer.ts │ │ │ │ ├── recognizer.ts │ │ │ │ └── settings.ts │ │ │ ├── lufile │ │ │ │ ├── LUFileLexer.g4 │ │ │ │ ├── LUFileParser.g4 │ │ │ │ ├── baseSection.js │ │ │ │ ├── classes │ │ │ │ │ ├── filesToParse.js │ │ │ │ │ ├── hclasses.js │ │ │ │ │ └── parserObject.js │ │ │ │ ├── diagnostic.js │ │ │ │ ├── entitySection.js │ │ │ │ ├── generated │ │ │ │ │ ├── LUFileLexer.interp │ │ │ │ │ ├── LUFileLexer.js │ │ │ │ │ ├── LUFileLexer.tokens │ │ │ │ │ ├── LUFileParser.interp │ │ │ │ │ ├── LUFileParser.js │ │ │ │ │ ├── LUFileParser.tokens │ │ │ │ │ ├── LUFileParserListener.js │ │ │ │ │ └── LUFileParserVisitor.js │ │ │ │ ├── importSection.js │ │ │ │ ├── luErrorListener.js │ │ │ │ ├── luParser.js │ │ │ │ ├── luResource.js │ │ │ │ ├── modelInfoSection.js │ │ │ │ ├── nestedIntentSection.js │ │ │ │ ├── newEntitySection.js │ │ │ │ ├── parseFileContents.js │ │ │ │ ├── qnaSection.js │ │ │ │ ├── read-text-file.js │ │ │ │ ├── sectionOperator.js │ │ │ │ ├── simpleIntentSection.js │ │ │ │ ├── translate-helpers.js │ │ │ │ └── visitor.js │ │ │ ├── luis │ │ │ │ ├── luConverter.js │ │ │ │ ├── luis.js │ │ │ │ ├── luisBuilder.js │ │ │ │ ├── luisCollate.js │ │ │ │ ├── luisGen.js │ │ │ │ ├── luisGenBuilder.js │ │ │ │ ├── luisValidator.js │ │ │ │ └── propertyHelper.js │ │ │ ├── qna │ │ │ │ ├── alterations │ │ │ │ │ ├── alterations.js │ │ │ │ │ └── qnaConverter.js │ │ │ │ └── qnamaker │ │ │ │ │ ├── kb.js │ │ │ │ │ ├── kbCollate.js │ │ │ │ │ ├── qnaContext.js │ │ │ │ │ ├── qnaConverter.js │ │ │ │ │ ├── qnaFiles.js │ │ │ │ │ ├── qnaList.js │ │ │ │ │ ├── qnaMakerBuilder.js │ │ │ │ │ ├── qnaMetaData.js │ │ │ │ │ ├── qnaPrompt.js │ │ │ │ │ └── qnamaker.js │ │ │ ├── qnabuild │ │ │ │ ├── builder.ts │ │ │ │ ├── core.ts │ │ │ │ ├── cross-trained-recognizer.ts │ │ │ │ ├── multi-language-recognizer.ts │ │ │ │ ├── recognizer.ts │ │ │ │ ├── serviceBase.js │ │ │ │ └── settings.ts │ │ │ ├── test │ │ │ │ └── testhelper.ts │ │ │ ├── translator │ │ │ │ └── lutranslate.js │ │ │ └── utils │ │ │ │ ├── enums │ │ │ │ ├── CLI-errors.js │ │ │ │ ├── invalidchars.js │ │ │ │ ├── luisEntityTypeNameMap.js │ │ │ │ ├── luisEntityTypes.js │ │ │ │ ├── luisbuiltintypes.js │ │ │ │ ├── luisobjenum.js │ │ │ │ ├── lusectiontypes.js │ │ │ │ ├── parsecommands.js │ │ │ │ ├── parserconsts.js │ │ │ │ └── recognizertypes.js │ │ │ │ ├── exception.js │ │ │ │ └── helpers.js │ │ └── utils │ │ │ ├── filehelper.ts │ │ │ └── textfilereader.ts │ │ ├── test │ │ ├── commands │ │ │ └── luis │ │ │ │ └── convert.test.js │ │ ├── fixtures │ │ │ ├── empty.json │ │ │ ├── empty.lu │ │ │ ├── es │ │ │ │ └── file.lu │ │ │ ├── examples │ │ │ │ ├── 1.lu │ │ │ │ ├── 10.lu │ │ │ │ ├── 11.lu │ │ │ │ ├── 12.lu │ │ │ │ ├── 13.lu │ │ │ │ ├── 2.lu │ │ │ │ ├── 3.lu │ │ │ │ ├── 4.lu │ │ │ │ ├── 5.lu │ │ │ │ ├── 6.lu │ │ │ │ ├── 7.lu │ │ │ │ ├── 8.lu │ │ │ │ ├── 9.lu │ │ │ │ ├── 9a.lu │ │ │ │ ├── README.MD │ │ │ │ ├── all.lu │ │ │ │ ├── all.md │ │ │ │ ├── all.qna │ │ │ │ ├── buyChocolate.lu │ │ │ │ ├── changeAlarm.lu │ │ │ │ ├── comment.lu │ │ │ │ ├── compositeEntities.lu │ │ │ │ ├── en-us │ │ │ │ │ ├── changeAlarm.lu │ │ │ │ │ ├── none.lu │ │ │ │ │ ├── qna4.lu │ │ │ │ │ └── root.lu │ │ │ │ ├── fr-fr │ │ │ │ │ ├── changeAlarm.lu │ │ │ │ │ ├── none.lu │ │ │ │ │ ├── qna4.lu │ │ │ │ │ └── root.lu │ │ │ │ ├── luFileReference1.lu │ │ │ │ ├── luFileReference2.lu │ │ │ │ ├── luFileReference3.lu │ │ │ │ ├── luFileReference4.lu │ │ │ │ ├── luFileReference5.lu │ │ │ │ ├── luFileReference6.lu │ │ │ │ ├── negativeCase1.lu │ │ │ │ ├── negativeCase2.lu │ │ │ │ ├── negativeCase3.lu │ │ │ │ ├── negativeCase4.lu │ │ │ │ ├── negativeCase5.lu │ │ │ │ ├── newEntityWithFeatures.lu │ │ │ │ ├── none.lu │ │ │ │ ├── patterns.lu │ │ │ │ ├── patterns1.lu │ │ │ │ ├── phraseLists.lu │ │ │ │ ├── qna-alterations.lu │ │ │ │ ├── qna1.lu │ │ │ │ ├── qna2.lu │ │ │ │ ├── qna3.lu │ │ │ │ ├── qna4.lu │ │ │ │ ├── qna5.lu │ │ │ │ ├── qna6.lu │ │ │ │ ├── qna7.lu │ │ │ │ ├── regexEntity.lu │ │ │ │ └── v7UpgradeTest.lu │ │ │ ├── file.lu │ │ │ ├── fr │ │ │ │ └── file.lu │ │ │ ├── generate │ │ │ │ ├── ClosedLists.cs │ │ │ │ ├── ClosedLists.json │ │ │ │ ├── CompositeEntities.cs │ │ │ │ ├── CompositeEntities.json │ │ │ │ ├── ContosoApp.cs │ │ │ │ ├── ContosoApp.json │ │ │ │ ├── FlightBooking.cs │ │ │ │ ├── FlightBooking.json │ │ │ │ ├── FlightBooking.ts │ │ │ │ ├── Intents.cs │ │ │ │ ├── Intents.json │ │ │ │ ├── NamespaceClass.cs │ │ │ │ ├── PatternEntities.cs │ │ │ │ ├── PatternEntities.json │ │ │ │ ├── PrebuiltEntities.cs │ │ │ │ ├── PrebuiltEntities.json │ │ │ │ ├── RegexEntities.cs │ │ │ │ ├── RegexEntities.json │ │ │ │ ├── SimpleEntities.cs │ │ │ │ ├── SimpleEntities.json │ │ │ │ ├── closed-lists.ts │ │ │ │ ├── composite-entities.ts │ │ │ │ ├── contoso-app.ts │ │ │ │ ├── intents.ts │ │ │ │ ├── invalid.json │ │ │ │ ├── pattern-entities.ts │ │ │ │ ├── prebuilt-entities.ts │ │ │ │ ├── regex-entities.ts │ │ │ │ └── simple-entities.ts │ │ │ ├── none.lu │ │ │ ├── qna.lu │ │ │ ├── root.luis.json │ │ │ ├── testcases │ │ │ │ ├── 1-intent-pattern-prebuilt.lu │ │ │ │ ├── 1-intent.lu │ │ │ │ ├── 8.lu │ │ │ │ ├── Child_Entity_With_Spaces.json │ │ │ │ ├── InvalidLUISModel.json │ │ │ │ ├── InvalidLUISModel1.json │ │ │ │ ├── InvalidLUISModel2.json │ │ │ │ ├── LUISAppWithPAInherits.json │ │ │ │ ├── ListEntityAndBatchtestsProblem.1.lu │ │ │ │ ├── ListEntityAndBatchtestsProblem.2.lu │ │ │ │ ├── ListEntityAndBatchtestsProblem.lu │ │ │ │ ├── MultiturnReplaceKbWithFlattenedTree.json │ │ │ │ ├── Skills │ │ │ │ │ ├── Calendar │ │ │ │ │ │ ├── Calendar.lu │ │ │ │ │ │ └── General.lu │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── Email.lu │ │ │ │ │ │ └── General.lu │ │ │ │ │ └── Todo │ │ │ │ │ │ ├── General.lu │ │ │ │ │ │ └── ToDo.lu │ │ │ │ ├── all-entity-types.lu │ │ │ │ ├── all.json │ │ │ │ ├── all_qna.json │ │ │ │ ├── bad.lu │ │ │ │ ├── bad2.lu │ │ │ │ ├── bad3.lu │ │ │ │ ├── bad3a.lu │ │ │ │ ├── bad4.lu │ │ │ │ ├── bad5.lu │ │ │ │ ├── bf-627.json │ │ │ │ ├── buyChocolate.lu │ │ │ │ ├── calendar_all_prebuilt.json │ │ │ │ ├── collate │ │ │ │ │ ├── 1.lu │ │ │ │ │ ├── 10.lu │ │ │ │ │ ├── 11.lu │ │ │ │ │ ├── 11.qna │ │ │ │ │ ├── 12.lu │ │ │ │ │ ├── 12.qna │ │ │ │ │ ├── 2.lu │ │ │ │ │ ├── 3.lu │ │ │ │ │ ├── 4.lu │ │ │ │ │ ├── 5.lu │ │ │ │ │ ├── 6.lu │ │ │ │ │ ├── 7.lu │ │ │ │ │ ├── 8.lu │ │ │ │ │ ├── 9.lu │ │ │ │ │ ├── 9a.lu │ │ │ │ │ ├── buyChocolate.lu │ │ │ │ │ ├── changeAlarm.lu │ │ │ │ │ ├── comment.lu │ │ │ │ │ ├── none.lu │ │ │ │ │ ├── patterns1.lu │ │ │ │ │ ├── phraseLists.lu │ │ │ │ │ ├── qna-alterations.qna │ │ │ │ │ ├── qna1.qna │ │ │ │ │ ├── qna2.qna │ │ │ │ │ ├── qna3.qna │ │ │ │ │ ├── qna4.qna │ │ │ │ │ ├── qna5.qna │ │ │ │ │ ├── qna6.lu │ │ │ │ │ ├── qna6.qna │ │ │ │ │ └── qna7.qna │ │ │ │ ├── comment.lu │ │ │ │ ├── deepreference │ │ │ │ │ ├── qna1.lu │ │ │ │ │ └── qna5.lu │ │ │ │ ├── emptyIntentDescriptors.json │ │ │ │ ├── entityNameWithSpaceAndFeature.json │ │ │ │ ├── faq.lu │ │ │ │ ├── fileReference │ │ │ │ │ ├── 9.lu │ │ │ │ │ ├── AboutBot.lu │ │ │ │ │ └── L2 │ │ │ │ │ │ ├── AboutUser.lu │ │ │ │ │ │ ├── Command.lu │ │ │ │ │ │ ├── Compliment.lu │ │ │ │ │ │ ├── Criticism.lu │ │ │ │ │ │ ├── Dialog.lu │ │ │ │ │ │ ├── Greeting.lu │ │ │ │ │ │ ├── Relationship.lu │ │ │ │ │ │ └── none.lu │ │ │ │ ├── import-resolver │ │ │ │ │ ├── lu-import-resolver │ │ │ │ │ │ ├── common.en-us.lu │ │ │ │ │ │ ├── help.en-us.lu │ │ │ │ │ │ ├── terminate.en-us.lu │ │ │ │ │ │ └── welcome.en-us.lu │ │ │ │ │ └── qna-import-resolver │ │ │ │ │ │ ├── common.en-us.qna │ │ │ │ │ │ ├── terminate.en-us.qna │ │ │ │ │ │ └── welcome.en-us.qna │ │ │ │ ├── intentWithSpace.json │ │ │ │ ├── invalid-alterations.lu │ │ │ │ ├── invalid-entity-definition.lu │ │ │ │ ├── invalid_model.lu │ │ │ │ ├── invalid_prebuilt_1.lu │ │ │ │ ├── invalid_prebuilt_2.lu │ │ │ │ ├── invalid_prebuilt_3.lu │ │ │ │ ├── invalid_prebuilt_4.lu │ │ │ │ ├── list-entity-body-without-hyphen.lu │ │ │ │ ├── lubuild │ │ │ │ │ ├── file-name-duplicated │ │ │ │ │ │ ├── Foo.en-us.lu │ │ │ │ │ │ └── Foo.lu │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── luis.settings.development.westus.json │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── foo.en-us.lu.dialog │ │ │ │ │ │ │ ├── foo.fr-fr.lu.dialog │ │ │ │ │ │ │ ├── foo.lu.dialog │ │ │ │ │ │ │ └── foo.zh-cn.lu.dialog │ │ │ │ │ │ └── lufiles │ │ │ │ │ │ │ ├── foo.fr-fr.lu │ │ │ │ │ │ │ ├── foo.lu │ │ │ │ │ │ │ └── foo.zh-cn.lu │ │ │ │ │ ├── foo2 │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── luis.settings.development.westus.json │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── foo.en-us.lu.dialog │ │ │ │ │ │ │ ├── foo.fr-fr.lu.dialog │ │ │ │ │ │ │ ├── foo.lu.dialog │ │ │ │ │ │ │ └── foo.zh-cn.lu.dialog │ │ │ │ │ │ ├── lufiles-and-dialog-assets │ │ │ │ │ │ │ ├── foo.en-us.lu.dialog │ │ │ │ │ │ │ ├── foo.fr-fr.lu │ │ │ │ │ │ │ ├── foo.fr-fr.lu.dialog │ │ │ │ │ │ │ ├── foo.lu │ │ │ │ │ │ │ ├── foo.lu.dialog │ │ │ │ │ │ │ ├── foo.zh-cn.lu │ │ │ │ │ │ │ └── luis.settings.development.westus.json │ │ │ │ │ │ └── luis │ │ │ │ │ │ │ ├── test(development)-foo.en-us.lu.json │ │ │ │ │ │ │ └── test(development)-foo.fr-fr.lu.json │ │ │ │ │ └── sandwich │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── luis.settings.development.westus.json │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── sandwich.en-us.lu.dialog │ │ │ │ │ │ └── sandwich.lu.dialog │ │ │ │ │ │ ├── lufiles │ │ │ │ │ │ ├── sandwich-BreadEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-CheeseEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-Confirmation.en-us.lu │ │ │ │ │ │ ├── sandwich-DirectionsEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-LengthEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-MeatEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-NameEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-PROPERTYName.en-us.lu │ │ │ │ │ │ ├── sandwich-Price.quantity.en-us.lu │ │ │ │ │ │ ├── sandwich-Quantity.en-us.lu │ │ │ │ │ │ ├── sandwich-QuantityEntity.en-us.lu │ │ │ │ │ │ ├── sandwich-cancelIntent.en-us.lu │ │ │ │ │ │ ├── sandwich-dimension.en-us.lu │ │ │ │ │ │ ├── sandwich-helpIntent.en-us.lu │ │ │ │ │ │ ├── sandwich-money.en-us.lu │ │ │ │ │ │ ├── sandwich-noneIntent.en-us.lu │ │ │ │ │ │ ├── sandwich-number.en-us.lu │ │ │ │ │ │ ├── sandwich-sandwich.lu │ │ │ │ │ │ └── sandwich.en-us.lu │ │ │ │ │ │ └── luis │ │ │ │ │ │ ├── test(development)-sandwich.en-us.lu.json │ │ │ │ │ │ ├── test(development)-sandwich.utteranceAdded.en-us.lu.json │ │ │ │ │ │ └── test(development)-sandwich.utteranceChanged.en-us.lu.json │ │ │ │ ├── merge_intents_disabled.lu │ │ │ │ ├── missing-synonyms.lu │ │ │ │ ├── missing-utterance.lu │ │ │ │ ├── missing-utterance2.lu │ │ │ │ ├── multi-ref.lu │ │ │ │ ├── multiturn.qna │ │ │ │ ├── nested-luis-json.json │ │ │ │ ├── newEntity1.json │ │ │ │ ├── newEntity2.json │ │ │ │ ├── overlappingEntities.json │ │ │ │ ├── phraseLists.lu │ │ │ │ ├── plFeatureDisabled.json │ │ │ │ ├── plWithFlags.lu │ │ │ │ ├── prebuilt-entity.lu │ │ │ │ ├── prebuilt_model.json │ │ │ │ ├── qna-alterations_Alterations.json │ │ │ │ ├── qna-filter-line-without-hyphen.lu │ │ │ │ ├── qna-question-line-without-hyphen.lu │ │ │ │ ├── qnaDocuments.json │ │ │ │ ├── qnaref.qna │ │ │ │ ├── reduced.lu │ │ │ │ ├── ref1.lu │ │ │ │ ├── ref10.lu │ │ │ │ ├── ref11.lu │ │ │ │ ├── ref12.lu │ │ │ │ ├── ref13.lu │ │ │ │ ├── ref14.qna │ │ │ │ ├── ref15.qna │ │ │ │ ├── ref2.lu │ │ │ │ ├── ref3.qna │ │ │ │ ├── ref4.lu │ │ │ │ ├── ref5.lu │ │ │ │ ├── ref6.lu │ │ │ │ ├── ref7.lu │ │ │ │ ├── ref8.lu │ │ │ │ ├── ref9.lu │ │ │ │ ├── ref_src1.lu │ │ │ │ ├── ref_src2.lu │ │ │ │ ├── regexmodel.luis │ │ │ │ ├── root.lu │ │ │ │ ├── root2.lu │ │ │ │ ├── root3.lu │ │ │ │ ├── section_disabled.lu │ │ │ │ ├── section_disabled2.lu │ │ │ │ ├── section_enabled.lu │ │ │ │ ├── section_enabled2.lu │ │ │ │ ├── special-char-in-entity-type.lu │ │ │ │ ├── test269-d.json │ │ │ │ ├── testTokenizerVersion.json │ │ │ │ ├── testcases-data.js │ │ │ │ ├── translate-testcase-data.js │ │ │ │ ├── translate-with-number.lu │ │ │ │ ├── utterance-without-hyphen.lu │ │ │ │ ├── v6WithoutPhraseLists.lu │ │ │ │ └── v7app.json │ │ │ ├── translation │ │ │ │ ├── en │ │ │ │ │ ├── qna.json │ │ │ │ │ ├── qna.lu │ │ │ │ │ └── translateLuResponse.json │ │ │ │ ├── files │ │ │ │ │ ├── allEntities.lu │ │ │ │ │ ├── bad.lu │ │ │ │ │ ├── fileRef.lu │ │ │ │ │ ├── intentsAndUtterances.lu │ │ │ │ │ ├── labelledEntityValue.lu │ │ │ │ │ ├── newEntity.lu │ │ │ │ │ ├── normalizedValue.lu │ │ │ │ │ ├── options.lu │ │ │ │ │ ├── phraseList.lu │ │ │ │ │ ├── qna.lu │ │ │ │ │ └── qnaContent.lu │ │ │ │ ├── fr │ │ │ │ │ ├── qna.json │ │ │ │ │ ├── qna.lu │ │ │ │ │ └── root.luis.json │ │ │ │ ├── serviceresponses │ │ │ │ │ ├── allEntities.json │ │ │ │ │ ├── fileRef.json │ │ │ │ │ ├── intentsAndUtterances.json │ │ │ │ │ ├── labelledEntityValue.json │ │ │ │ │ ├── newEntity.json │ │ │ │ │ ├── normalizedValue.json │ │ │ │ │ ├── options.json │ │ │ │ │ ├── phraseList.json │ │ │ │ │ ├── qna.json │ │ │ │ │ └── qnaContent.json │ │ │ │ ├── translateLuResponse.json │ │ │ │ ├── translateLuResponseSecond.json │ │ │ │ ├── translateLuisResponse.json │ │ │ │ ├── translateLuisResponseSecond.json │ │ │ │ └── translatedfiles │ │ │ │ │ ├── allEntities.lu │ │ │ │ │ ├── fileRef.lu │ │ │ │ │ ├── intentsAndUtterances.lu │ │ │ │ │ ├── labelledEntityValue.lu │ │ │ │ │ ├── newEntity.lu │ │ │ │ │ ├── normalizedValue.lu │ │ │ │ │ ├── options.lu │ │ │ │ │ ├── phraseList.lu │ │ │ │ │ ├── qna.lu │ │ │ │ │ └── qnaContent.lu │ │ │ └── verified │ │ │ │ ├── 1.json │ │ │ │ ├── 1.lu │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 12qna.json │ │ │ │ ├── 13.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 9.json │ │ │ │ ├── 9a.json │ │ │ │ ├── Child_Entity_With_Spaces.lu │ │ │ │ ├── LUISAppWithPAInherits.lu │ │ │ │ ├── LUISAppWithPAInherits.lu.json │ │ │ │ ├── ListEntityAndBatchtestsProblem.1_LUISBatchTest.json │ │ │ │ ├── ListEntityAndBatchtestsProblem.2_LUISBatchTest.json │ │ │ │ ├── ListEntityAndBatchtestsProblem_LUISBatchTest.json │ │ │ │ ├── MultiturnReplaceKbWithFlattenedTree.qna │ │ │ │ ├── Skills │ │ │ │ ├── Calendar.json │ │ │ │ ├── Email.json │ │ │ │ └── ToDo.json │ │ │ │ ├── all-entity-types.json │ │ │ │ ├── all-qna.json │ │ │ │ ├── all.json │ │ │ │ ├── allGen.lu │ │ │ │ ├── allGenQnA.lu │ │ │ │ ├── allRefresh.lu │ │ │ │ ├── allall-qna.lu │ │ │ │ ├── alterations_qna4.json │ │ │ │ ├── buyChocolate.json │ │ │ │ ├── calendar_all_prebuilt.lu │ │ │ │ ├── calendar_all_prebuilt_parsed.json │ │ │ │ ├── collate-qna.json │ │ │ │ ├── collate_Alterations.json │ │ │ │ ├── collate_alteration_gen.lu │ │ │ │ ├── collate_refresh.lu │ │ │ │ ├── collated-luis.json │ │ │ │ ├── collated-luis_LUISBatchTest.json │ │ │ │ ├── de │ │ │ │ ├── all.lu │ │ │ │ ├── faq.lu │ │ │ │ ├── reduced.lu │ │ │ │ └── translate-with-number.lu │ │ │ │ ├── emptyIntentDescriptors.lu │ │ │ │ ├── importUrl.json │ │ │ │ ├── luis_sorted.lu │ │ │ │ ├── merge_intents_disabled.json │ │ │ │ ├── modelAsFeatureGen.lu │ │ │ │ ├── modelAsFeatures.json │ │ │ │ ├── modelAsFeatures.lu │ │ │ │ ├── modelInfo.lu │ │ │ │ ├── multiturn.json.qna │ │ │ │ ├── multiturn.qna.json │ │ │ │ ├── nDepthEntity.json │ │ │ │ ├── nDepthEntity.lu │ │ │ │ ├── nDepthEntityInUtterance.json │ │ │ │ ├── nDepthEntityInUtterance.lu │ │ │ │ ├── newEntity1.lu │ │ │ │ ├── newEntity2.lu │ │ │ │ ├── newEntityWithFeatures.json │ │ │ │ ├── newEntityWithFeatures.lu │ │ │ │ ├── plFeatures.json │ │ │ │ ├── plFeatures.lu │ │ │ │ ├── plWithFlags.json │ │ │ │ ├── prebuilt-entity.json │ │ │ │ ├── prebuilt_mode.lu │ │ │ │ ├── prebuilt_model_parse.json │ │ │ │ ├── qna5.json │ │ │ │ ├── qna_a_sorted.lu │ │ │ │ ├── qna_sorted.lu │ │ │ │ ├── ref1.json │ │ │ │ ├── ref14_a.json │ │ │ │ ├── ref15_a.json │ │ │ │ ├── ref4.json │ │ │ │ ├── ref5.json │ │ │ │ ├── ref6.json │ │ │ │ ├── ref7.json │ │ │ │ ├── ref8.json │ │ │ │ ├── referenceUrl.json │ │ │ │ ├── referenceUrlWithWildCard.json │ │ │ │ ├── regexmodel.lu │ │ │ │ ├── root.json │ │ │ │ ├── root2.json │ │ │ │ ├── root2_luis.json │ │ │ │ ├── root3.lu │ │ │ │ ├── root_luis.json │ │ │ │ ├── section_disabled.json │ │ │ │ ├── section_disabled2.json │ │ │ │ ├── section_enabled.json │ │ │ │ ├── section_enabled2.json │ │ │ │ ├── sorted.lu │ │ │ │ ├── special-char-in-entity-type.json │ │ │ │ ├── stdin-qna.lu │ │ │ │ ├── stdin.lu │ │ │ │ ├── test269-d.lu │ │ │ │ ├── v5Upgrade.json │ │ │ │ ├── v5UpgradeTest.lu │ │ │ │ ├── v6WithoutPhraseLists.json │ │ │ │ ├── v7UpgradeTest.json │ │ │ │ ├── v7UpgradeTest.lu │ │ │ │ ├── v7app.lu │ │ │ │ ├── v7app_c.json │ │ │ │ └── zh-Hans │ │ │ │ └── reduced.lu │ │ ├── hook.js │ │ ├── mocha.opts │ │ ├── parser │ │ │ ├── cross-train │ │ │ │ └── crossTrainer.test.js │ │ │ ├── lu │ │ │ │ └── lu.test.js │ │ │ ├── lubuild │ │ │ │ └── lubuild.test.js │ │ │ ├── lufile │ │ │ │ ├── appKbMetaData.test.js │ │ │ │ ├── classes │ │ │ │ │ └── classes.test.js │ │ │ │ ├── helpers.test.js │ │ │ │ ├── luQnAFileReference.test.js │ │ │ │ ├── luis.boundary.test.js │ │ │ │ ├── lutranslator.test.js │ │ │ │ ├── newEntityDefinitionWithSpaces.test.js │ │ │ │ ├── parseFileContents.NewEntityDefinition.test.js │ │ │ │ ├── parseFileContents.comments.test.js │ │ │ │ ├── parseFileContents.composeEntity.test.js │ │ │ │ ├── parseFileContents.featureToModels.test.js │ │ │ │ ├── parseFileContents.modelAsFeature.test.js │ │ │ │ ├── parseFileContents.nDepthEntity.test.js │ │ │ │ ├── parseFileContents.newEntityInUtterance.test.js │ │ │ │ ├── parseFileContents.parseFile.test.js │ │ │ │ ├── parseFileContents.qnafile.test.js │ │ │ │ ├── parseFileContents.regexEntity.test.js │ │ │ │ ├── parseFileContents.roleTest.test.js │ │ │ │ ├── qnaMultiTurnAndReferences.test.js │ │ │ │ ├── sectionapi.test.js │ │ │ │ └── urlReference.test.js │ │ │ ├── luis │ │ │ │ └── luisBuilder.test.js │ │ │ ├── qna │ │ │ │ └── qnaMakerBuilder.test.js │ │ │ └── qnabuild │ │ │ │ └── qnabuild.test.js │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── filehelper.test.js │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── rush.json │ └── scripts │ └── fixurls.js ├── schemas ├── component │ ├── component.schema │ ├── definitions.schema │ ├── readme.md │ └── v1.0 │ │ └── component.schema ├── protocol │ └── botframework.json ├── readme.md ├── skills │ ├── SchemaManifestTests │ │ ├── SchemaManifestTests.csproj │ │ ├── SchemaManifestTests.sln │ │ └── ValidateSchemaTests.cs │ ├── readme.md │ ├── skill-manifest-2.0.0.json │ ├── skill-manifest-2.1.preview-1.json │ ├── v2.0 │ │ ├── samples │ │ │ ├── complex-skillmanifest.json │ │ │ ├── echo-skillmanifest.json │ │ │ └── simple-skillmanifest.json │ │ └── skill-manifest.json │ ├── v2.1.preview-1 │ │ ├── samples │ │ │ ├── complex-skillmanifest.json │ │ │ ├── echo-skillmanifest.json │ │ │ └── simple-skillmanifest.json │ │ └── skill-manifest.json │ ├── v2.1 │ │ ├── samples │ │ │ ├── complex-pva-manifest.json │ │ │ ├── complex-skillmanifest.json │ │ │ ├── echo-skillmanifest.json │ │ │ └── simple-skillmanifest.json │ │ └── skill-manifest.json │ └── v2.2 │ │ ├── samples │ │ ├── complex-pva-manifest.json │ │ ├── complex-skillmanifest.json │ │ ├── echo-skillmanifest.json │ │ ├── relativeUris │ │ │ ├── complex-skillmanifest.json │ │ │ ├── knowledge-base │ │ │ │ ├── SkillBot-QnA-en.qna │ │ │ │ ├── SkillBot-QnA-es-ES.qna │ │ │ │ └── SkillBot-QnA-es-MX.qna │ │ │ ├── language-understanding │ │ │ │ ├── SkillBot-en.lu │ │ │ │ ├── SkillBot-es-ES.lu │ │ │ │ └── SkillBot-es-MX.lu │ │ │ ├── privacy.html │ │ │ └── skillIcon.png │ │ └── simple-skillmanifest.json │ │ └── skill-manifest.json └── ui │ └── v1.0 │ └── ui.schema ├── specs ├── botframework-activity │ ├── botframework-activity.md │ └── botframework-cards.md ├── botframework-protocol │ ├── botframework-channel.json │ ├── channel-update-spec.md │ ├── directline-1.1.json │ └── directline-3.0.json ├── component-model │ └── overview.md ├── manifest │ ├── botframework-manifest.md │ ├── example.man │ └── manifest.json ├── testing │ ├── images │ │ └── bot-service-overview.png │ ├── skills │ │ ├── SkillsFunctionalTesting.md │ │ ├── SkillsMatrixTesting.md │ │ ├── SkillsScopeInformation.md │ │ ├── media │ │ │ ├── Chaining.jpg │ │ │ ├── Simple.jpg │ │ │ └── src │ │ │ │ └── SkillsFunctionalTestingDiagrams.pptx │ │ └── scenarios │ │ │ ├── AuthWithOAuthCard.md │ │ │ ├── AuthWithSSO.md │ │ │ ├── CardActionsWithInvokes.md │ │ │ ├── DraftScenarios.md │ │ │ ├── MultiTurnInteraction.md │ │ │ ├── ProactiveMessage.md │ │ │ ├── SingleTurnInteraction.md │ │ │ ├── SkillCallsSkill.md │ │ │ ├── SkillReceivesAttachment.md │ │ │ ├── SkillStartsConversation.md │ │ │ ├── TeamsAPI.md │ │ │ ├── TeamsSkillWithTaskModule.md │ │ │ └── UpdateDeleteAdaptiveCard.md │ └── testing.md └── transcript │ └── transcript.md └── tools └── changelog ├── .gitignore ├── README.md └── git-log.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bot-framework-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.github/ISSUE_TEMPLATE/bot-framework-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bot-framework-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.github/ISSUE_TEMPLATE/bot-framework-feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Common/Telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Telemetry/README.md -------------------------------------------------------------------------------- /Common/Transcripts/CoreExtensionsTests/ConversationStateTest.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/CoreExtensionsTests/ConversationStateTest.chat -------------------------------------------------------------------------------- /Common/Transcripts/CoreExtensionsTests/CustomStateTest.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/CoreExtensionsTests/CustomStateTest.chat -------------------------------------------------------------------------------- /Common/Transcripts/CoreExtensionsTests/UserStateTest.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/CoreExtensionsTests/UserStateTest.chat -------------------------------------------------------------------------------- /Common/Transcripts/CoreTests/BotAdapted_Bracketing.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/CoreTests/BotAdapted_Bracketing.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/AttachmentPrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/AttachmentPrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/ChoicePrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/ChoicePrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/ConfirmPrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/ConfirmPrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/ContentAttachment.json: -------------------------------------------------------------------------------- 1 | "some content" -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/DateTimePrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/DateTimePrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/NumberPrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/NumberPrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/TextPrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/TextPrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/Waterfall.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/Waterfall.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/WaterfallNested.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/WaterfallNested.chat -------------------------------------------------------------------------------- /Common/Transcripts/DialogsTests/WaterfallPrompt.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/DialogsTests/WaterfallPrompt.chat -------------------------------------------------------------------------------- /Common/Transcripts/LuisTests/LuisMiddleware.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/LuisTests/LuisMiddleware.chat -------------------------------------------------------------------------------- /Common/Transcripts/QnATests/QnAMiddleware.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/QnATests/QnAMiddleware.chat -------------------------------------------------------------------------------- /Common/Transcripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/README.md -------------------------------------------------------------------------------- /Common/Transcripts/TranslationTests/LocaleConvertToEnglish.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/TranslationTests/LocaleConvertToEnglish.chat -------------------------------------------------------------------------------- /Common/Transcripts/TranslationTests/TranslateToEnglish.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/TranslationTests/TranslateToEnglish.chat -------------------------------------------------------------------------------- /Common/Transcripts/TranslationTests/TranslateToUserLanguage.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/Transcripts/TranslationTests/TranslateToUserLanguage.chat -------------------------------------------------------------------------------- /Common/badges/BotBuilderBadge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/badges/BotBuilderBadge.md -------------------------------------------------------------------------------- /Common/badges/ic_bot_framework - white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/badges/ic_bot_framework - white.svg -------------------------------------------------------------------------------- /Common/badges/ic_bot_framework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Common/badges/ic_bot_framework.svg -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/README.md -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/README.md -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/common.fixed.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/common.fixed.lu -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/common.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/common.lu -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/common.test.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/common.test.lu -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/comparedLU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/comparedLU.png -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/demo.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/demo.cmd -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/reportafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/reportafter.png -------------------------------------------------------------------------------- /Orchestrator/Samples/CLI/ModelTuning/reportbefore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/CLI/ModelTuning/reportbefore.png -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/.gitignore -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/AdapterWithErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/AdapterWithErrorHandler.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/BotServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/BotServices.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/Bots/DispatchBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/Bots/DispatchBot.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/HomeAutomation.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/HomeAutomation.lu -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/QnAMaker.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/QnAMaker.qna -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/Weather.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/CognitiveModels/Weather.lu -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/Controllers/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/Controllers/BotController.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/IBotServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/IBotServices.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/OrchestratorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/OrchestratorConfig.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/Program.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/Properties/launchSettings.json -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/README.md -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/Startup.cs -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/appsettings.json -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/nlp-with-entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/nlp-with-entities.csproj -------------------------------------------------------------------------------- /Orchestrator/Samples/dotnet/nlp-with-entities/wwwroot/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/Samples/dotnet/nlp-with-entities/wwwroot/default.html -------------------------------------------------------------------------------- /Orchestrator/docs/BFOrchestratorInteractive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/BFOrchestratorInteractive.md -------------------------------------------------------------------------------- /Orchestrator/docs/BFOrchestratorReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/BFOrchestratorReport.md -------------------------------------------------------------------------------- /Orchestrator/docs/BFOrchestratorUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/BFOrchestratorUsage.md -------------------------------------------------------------------------------- /Orchestrator/docs/DispatchMigrationExample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/DispatchMigrationExample.md -------------------------------------------------------------------------------- /Orchestrator/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/FAQ.md -------------------------------------------------------------------------------- /Orchestrator/docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/LICENSE.md -------------------------------------------------------------------------------- /Orchestrator/docs/LUFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/LUFormat.md -------------------------------------------------------------------------------- /Orchestrator/docs/NLRModels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/NLRModels.md -------------------------------------------------------------------------------- /Orchestrator/docs/Orchestrator Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/Orchestrator Intro.pptx -------------------------------------------------------------------------------- /Orchestrator/docs/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/Overview.md -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailAmbiguous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailAmbiguous.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailIntentUtteranceStatistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailIntentUtteranceStatistics.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailLowConfidence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailLowConfidence.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailMetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailMetrics.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailMisclassified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailMisclassified.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabEmailUtteranceDuplicates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabEmailUtteranceDuplicates.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaAmbiguous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaAmbiguous.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaIntentUtteranceStatistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaIntentUtteranceStatistics.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaLowConfidence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaLowConfidence.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaMetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaMetrics.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaMisclassified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaMisclassified.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/EvaluationReportTabVaUtteranceDuplicates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/EvaluationReportTabVaUtteranceDuplicates.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/authoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/authoring.png -------------------------------------------------------------------------------- /Orchestrator/docs/media/dispatch-logic-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/media/dispatch-logic-flow.png -------------------------------------------------------------------------------- /Orchestrator/docs/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/docs/package/README.md -------------------------------------------------------------------------------- /Orchestrator/v0.1/nlr_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/v0.1/nlr_versions.json -------------------------------------------------------------------------------- /Orchestrator/v0.1/nlr_versions.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/v0.1/nlr_versions.schema -------------------------------------------------------------------------------- /Orchestrator/v0.2/nlr_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/v0.2/nlr_versions.json -------------------------------------------------------------------------------- /Orchestrator/v0.2/nlr_versions.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/Orchestrator/v0.2/nlr_versions.schema -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codeql3000.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | Codeql.Enabled: true -------------------------------------------------------------------------------- /docs/BF Labeling Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/BF Labeling Guide.md -------------------------------------------------------------------------------- /docs/CUX Guide Microsoft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/CUX Guide Microsoft.pdf -------------------------------------------------------------------------------- /docs/media/BotFrameworkSDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/media/BotFrameworkSDK.png -------------------------------------------------------------------------------- /docs/media/GitHubBannerV2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/media/GitHubBannerV2.gif -------------------------------------------------------------------------------- /docs/media/UserFlowsAppInsights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/media/UserFlowsAppInsights.jpg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/BFServiceAndBotDetails/BFServiceAndBotDetails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/BFServiceAndBotDetails/BFServiceAndBotDetails.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/BotFrameworkAdapterFlow/BFAdapterActivityFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/BotFrameworkAdapterFlow/BFAdapterActivityFlow.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/CustomAdapterFlow/BufferingWithCustomAdapter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/CustomAdapterFlow/BufferingWithCustomAdapter.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/CustomAdapterFlow/CustomAdapterActivityFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/CustomAdapterFlow/CustomAdapterActivityFlow.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow.md -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow_DiagramSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/DetailedSdkFlow/DetailedSdkFlow_DiagramSource.md -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/GeneralActivityFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/GeneralActivityFlow.md -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/GeneralActivityFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/GeneralActivityFlow.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/GeneralActivityFlow_DiagramSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/GeneralActivityFlow_DiagramSource.md -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/ParticipantsInActivityFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/ParticipantsInActivityFlow.png -------------------------------------------------------------------------------- /docs/umlDiagrams/ActivityFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/ActivityFlow/README.md -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/AuthenticateRequest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/AuthenticateRequest.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/AuthenticateRequest_DiagramSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/AuthenticateRequest_DiagramSource.md -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/ChannelActingOnBehalfOfSelf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/ChannelActingOnBehalfOfSelf.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/ChannelActivingOnBehalfOfUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/ChannelActivingOnBehalfOfUser.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/ChannelsToABSLayerToBot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/ChannelsToABSLayerToBot.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/HigherLevel_TokenAuthentication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/HigherLevel_TokenAuthentication.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/JwtAnatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/JwtAnatomy.png -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/JwtTokenValidationClassDiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/JwtTokenValidationClassDiagram.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/README.md -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/RsaKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/RsaKeys.png -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/SimpleChannelWithTokenToBot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/SimpleChannelWithTokenToBot.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/TokenSignatureParticipants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/TokenSignatureParticipants.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/WhyHelloBot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/WhyHelloBot.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/ChannelToBot/WhyHelloBot_DiagramSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/ChannelToBot/WhyHelloBot_DiagramSource.md -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/HighLevelAuthFlow/AuthServerAuthenticatesUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/HighLevelAuthFlow/AuthServerAuthenticatesUser.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/HighLevelAuthFlow/AuthServerIssuesTokenToBot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/HighLevelAuthFlow/AuthServerIssuesTokenToBot.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/OAuthPrompt/OAuthPrompt_BeginDialog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/OAuthPrompt/OAuthPrompt_BeginDialog.svg -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/OAuthPrompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/OAuthPrompt/README.md -------------------------------------------------------------------------------- /docs/umlDiagrams/Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/docs/umlDiagrams/Authentication/README.md -------------------------------------------------------------------------------- /dri/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | botreport_* 3 | members-do-not-check-in.txt 4 | -------------------------------------------------------------------------------- /dri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/dri/README.md -------------------------------------------------------------------------------- /dri/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/dri/helpers.py -------------------------------------------------------------------------------- /dri/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/dri/output.py -------------------------------------------------------------------------------- /dri/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/dri/report.py -------------------------------------------------------------------------------- /dri/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/dri/requirements.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/icon.png -------------------------------------------------------------------------------- /parsers/LU/ANTLR/LUFileLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/ANTLR/LUFileLexer.g4 -------------------------------------------------------------------------------- /parsers/LU/ANTLR/LUFileParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/ANTLR/LUFileParser.g4 -------------------------------------------------------------------------------- /parsers/LU/JS/build/bf-cli-build-test-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/bf-cli-build-test-steps.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-azure-devops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli-azure-devops.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli-beta.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli-daily.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli-mac.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli-rc.yml -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli-version.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | releaseVersion: '4.11.0' 3 | -------------------------------------------------------------------------------- /parsers/LU/JS/build/botframework-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/build/botframework-cli.yml -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/.npmrc -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/command-line.json -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/experiments.json -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/pnpm-lock.yaml -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/pnpmfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/pnpmfile.js -------------------------------------------------------------------------------- /parsers/LU/JS/common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /parsers/LU/JS/common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /parsers/LU/JS/common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /parsers/LU/JS/common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/scripts/install-run.js -------------------------------------------------------------------------------- /parsers/LU/JS/common/scripts/version-and-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/common/scripts/version-and-pack.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/.editorconfig -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/.gitignore -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/.nycrc -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/README.md -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/package.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/index.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/composerindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/composerindex.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/converters/helpers/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/converters/helpers/writer.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/converters/luistocsconverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/converters/luistocsconverter.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/converters/luistotsconverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/converters/luistotsconverter.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/cross-train/confighelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/cross-train/confighelper.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/cross-train/cross-train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/cross-train/cross-train.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/cross-train/crossTrainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/cross-train/crossTrainer.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/index.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lu/lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lu/lu.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lu/luMerger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lu/luMerger.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lu/luOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lu/luOptions.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lu/qna.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lu/qna.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lu/qnaOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lu/qnaOptions.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/builder.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/core.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/cross-trained-recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/cross-trained-recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/multi-language-recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/multi-language-recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lubuild/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lubuild/settings.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/LUFileLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/LUFileLexer.g4 -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/LUFileParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/LUFileParser.g4 -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/baseSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/baseSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/classes/filesToParse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/classes/filesToParse.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/classes/hclasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/classes/hclasses.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/classes/parserObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/classes/parserObject.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/diagnostic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/diagnostic.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/entitySection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/entitySection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.interp -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileLexer.tokens -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.interp -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParser.tokens -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParserListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParserListener.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParserVisitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/generated/LUFileParserVisitor.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/importSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/importSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/luErrorListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/luErrorListener.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/luParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/luParser.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/luResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/luResource.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/modelInfoSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/modelInfoSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/nestedIntentSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/nestedIntentSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/newEntitySection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/newEntitySection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/parseFileContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/parseFileContents.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/qnaSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/qnaSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/read-text-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/read-text-file.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/sectionOperator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/sectionOperator.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/simpleIntentSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/simpleIntentSection.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/translate-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/translate-helpers.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/lufile/visitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/lufile/visitor.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luConverter.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luis.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luisBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luisBuilder.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luisCollate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luisCollate.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luisGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luisGen.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luisGenBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luisGenBuilder.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/luisValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/luisValidator.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/luis/propertyHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/luis/propertyHelper.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/alterations/alterations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/alterations/alterations.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/alterations/qnaConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/alterations/qnaConverter.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/kb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/kb.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/kbCollate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/kbCollate.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaContext.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaConverter.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaFiles.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaList.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaMakerBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaMakerBuilder.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaMetaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaMetaData.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnaPrompt.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnamaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qna/qnamaker/qnamaker.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/builder.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/core.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/cross-trained-recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/cross-trained-recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/multi-language-recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/multi-language-recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/recognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/recognizer.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/serviceBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/serviceBase.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/qnabuild/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/qnabuild/settings.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/test/testhelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/test/testhelper.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/translator/lutranslate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/translator/lutranslate.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/CLI-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/CLI-errors.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/invalidchars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/invalidchars.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/luisEntityTypeNameMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/luisEntityTypeNameMap.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/luisEntityTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/luisEntityTypes.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/luisbuiltintypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/luisbuiltintypes.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/luisobjenum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/luisobjenum.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/lusectiontypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/lusectiontypes.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/parsecommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/parsecommands.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/parserconsts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/parserconsts.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/enums/recognizertypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/enums/recognizertypes.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/exception.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/parser/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/parser/utils/helpers.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/utils/filehelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/utils/filehelper.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/src/utils/textfilereader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/src/utils/textfilereader.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/commands/luis/convert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/commands/luis/convert.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/empty.lu: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/es/file.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/es/file.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/10.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/10.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/11.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/11.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/12.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/12.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/13.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/13.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/7.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/7.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/8.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/8.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/9.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/9.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/9a.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/9a.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/README.MD -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/all.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/all.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/all.md -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/all.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/all.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/buyChocolate.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/buyChocolate.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/changeAlarm.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/changeAlarm.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/comment.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/comment.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/compositeEntities.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/compositeEntities.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/changeAlarm.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/changeAlarm.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | * who is your ceo? 3 | - santa wants a blue ribbon 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/qna4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/qna4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/root.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/en-us/root.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/changeAlarm.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/changeAlarm.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | *qui est votre PDG? 3 | -Santa veut un ruban bleu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/qna4.lu: -------------------------------------------------------------------------------- 1 | > QnA Maker only supports English at this point. http://qnamaker.ai 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/root.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/fr-fr/root.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/luFileReference6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase1.lu: -------------------------------------------------------------------------------- 1 | # Greeting 2 | foobar 3 | 4 | $e:simple 5 | 6 | tomato -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase2.lu: -------------------------------------------------------------------------------- 1 | # ? this is a question 2 | 3 | # greeting 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/negativeCase5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/newEntityWithFeatures.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/newEntityWithFeatures.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | * who is your ceo? 3 | - santa wants a blue ribbon 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/patterns.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/patterns.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/patterns1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/patterns1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/phraseLists.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/phraseLists.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna-alterations.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna-alterations.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/qna7.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/qna7.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/regexEntity.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/regexEntity.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/examples/v7UpgradeTest.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/examples/v7UpgradeTest.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/file.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/file.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/fr/file.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/fr/file.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/ClosedLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/ClosedLists.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/ClosedLists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/ClosedLists.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/CompositeEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/CompositeEntities.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/CompositeEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/CompositeEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/ContosoApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/ContosoApp.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/ContosoApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/ContosoApp.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/Intents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/Intents.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/Intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/Intents.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/NamespaceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/NamespaceClass.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/PatternEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/PatternEntities.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/PatternEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/PatternEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/PrebuiltEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/PrebuiltEntities.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/PrebuiltEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/PrebuiltEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/RegexEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/RegexEntities.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/RegexEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/RegexEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/SimpleEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/SimpleEntities.cs -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/SimpleEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/SimpleEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/closed-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/closed-lists.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/composite-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/composite-entities.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/contoso-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/contoso-app.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/intents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/intents.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/invalid.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/pattern-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/pattern-entities.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/prebuilt-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/prebuilt-entities.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/regex-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/regex-entities.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/generate/simple-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/generate/simple-entities.ts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | * who is your ceo? 3 | - santa wants a blue ribbon 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/root.luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/root.luis.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/1-intent-pattern-prebuilt.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/1-intent-pattern-prebuilt.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/1-intent.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/1-intent.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/8.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/8.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Child_Entity_With_Spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Child_Entity_With_Spaces.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel1.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/InvalidLUISModel2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/LUISAppWithPAInherits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/LUISAppWithPAInherits.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ListEntityAndBatchtestsProblem.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ListEntityAndBatchtestsProblem.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Calendar/Calendar.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Calendar/Calendar.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Calendar/General.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Calendar/General.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Email/Email.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Email/Email.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Email/General.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Email/General.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Todo/General.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Todo/General.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Todo/ToDo.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/Skills/Todo/ToDo.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/all-entity-types.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/all-entity-types.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/all.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/all_qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/all_qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad.lu: -------------------------------------------------------------------------------- 1 | # ? question 2 | 3 | $entity:list -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad2.lu: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad3.lu: -------------------------------------------------------------------------------- 1 | # greeting 2 | 3 | # g2 4 | i wangt {tomato} -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad3a.lu: -------------------------------------------------------------------------------- 1 | # greeting 2 | 3 | # g2 4 | - i wangt {tomato=} -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/bad4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bad5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/bad5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/bf-627.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/bf-627.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/buyChocolate.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/buyChocolate.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/calendar_all_prebuilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/calendar_all_prebuilt.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/10.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/10.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/11.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/11.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/11.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/11.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/12.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/12.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/12.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/12.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/7.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/7.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/8.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/8.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/9.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/9.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/9a.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/9a.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/buyChocolate.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/buyChocolate.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/changeAlarm.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/changeAlarm.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/comment.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/comment.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | * who is your ceo? 3 | - santa wants a blue ribbon 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/patterns1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/patterns1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/phraseLists.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/phraseLists.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna-alterations.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna-alterations.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna1.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna1.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna2.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna2.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna3.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna3.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna4.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna4.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna5.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna5.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna6.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna6.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna7.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/collate/qna7.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/comment.lu: -------------------------------------------------------------------------------- 1 | //This is a comment 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/deepreference/qna1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/deepreference/qna1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/deepreference/qna5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/deepreference/qna5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/emptyIntentDescriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/emptyIntentDescriptors.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/faq.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/faq.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/9.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/9.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/AboutBot.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/AboutBot.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/AboutUser.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/AboutUser.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Command.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Command.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Compliment.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Compliment.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Criticism.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Criticism.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Dialog.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Dialog.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Greeting.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Greeting.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Relationship.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/Relationship.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/fileReference/L2/none.lu: -------------------------------------------------------------------------------- 1 | # None 2 | * who is your ceo? 3 | - santa wants a blue ribbon 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/intentWithSpace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/intentWithSpace.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid-alterations.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid-alterations.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid-entity-definition.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid-entity-definition.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid_model.lu: -------------------------------------------------------------------------------- 1 | > !# @app = test 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid_prebuilt_1.lu: -------------------------------------------------------------------------------- 1 | > !# @intent.inherits = name : Web.WebSearch 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid_prebuilt_2.lu: -------------------------------------------------------------------------------- 1 | > !# @entity.inherits = name : Web.WebSearch 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid_prebuilt_3.lu: -------------------------------------------------------------------------------- 1 | > !# @entity.inherits2 = name : Web.WebSearch 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/invalid_prebuilt_4.lu: -------------------------------------------------------------------------------- 1 | > !# @intent.inherits2 = name : Web.WebSearch 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/dialogs/foo.lu.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/dialogs/foo.lu.dialog -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.fr-fr.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.fr-fr.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.zh-cn.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/foo/lufiles/foo.zh-cn.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-DirectionsEntity.en-us.lu: -------------------------------------------------------------------------------- 1 | $DirectionsEntity:Simple -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-LengthEntity.en-us.lu: -------------------------------------------------------------------------------- 1 | $LengthEntity:number -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-NameEntity.en-us.lu: -------------------------------------------------------------------------------- 1 | $NameEntity:Simple -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-Price.quantity.en-us.lu: -------------------------------------------------------------------------------- 1 | $PREBUILT:number roles=Price.quantity -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-Quantity.en-us.lu: -------------------------------------------------------------------------------- 1 | $PREBUILT:number roles=Quantity -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-dimension.en-us.lu: -------------------------------------------------------------------------------- 1 | $PREBUILT:dimension -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-money.en-us.lu: -------------------------------------------------------------------------------- 1 | $PREBUILT:money -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/lubuild/sandwich/lufiles/sandwich-number.en-us.lu: -------------------------------------------------------------------------------- 1 | $PREBUILT:number -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/merge_intents_disabled.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/merge_intents_disabled.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/missing-synonyms.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/missing-synonyms.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/missing-utterance.lu: -------------------------------------------------------------------------------- 1 | # Greeting 2 | 3 | # None 4 | - Test 5 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/missing-utterance2.lu: -------------------------------------------------------------------------------- 1 | # Greeting 2 | ## None 3 | - Test 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/multi-ref.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/multi-ref.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/multiturn.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/multiturn.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/nested-luis-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/nested-luis-json.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/newEntity1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/newEntity1.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/newEntity2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/newEntity2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/overlappingEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/overlappingEntities.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/phraseLists.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/phraseLists.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/plFeatureDisabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/plFeatureDisabled.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/plWithFlags.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/plWithFlags.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/prebuilt-entity.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/prebuilt-entity.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/prebuilt_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/prebuilt_model.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/qnaDocuments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/qnaDocuments.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/qnaref.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/qnaref.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/reduced.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/reduced.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref10.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref10.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref11.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref11.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref12.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref12.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref13.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref13.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref14.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref14.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref15.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref15.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref3.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref3.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref4.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref4.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref5.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref5.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref6.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref6.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref7.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref7.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref8.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref8.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref9.lu: -------------------------------------------------------------------------------- 1 | # All 2 | - [all utterances in the .lu file](./8.lu#DeleteAlarm) 3 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref_src1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref_src1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/ref_src2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/ref_src2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/regexmodel.luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/regexmodel.luis -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/root.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/root.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/root2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/root2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/root3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/root3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/section_disabled.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/section_disabled.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/section_disabled2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/section_disabled2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/section_enabled.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/section_enabled.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/section_enabled2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/section_enabled2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/special-char-in-entity-type.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/special-char-in-entity-type.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/test269-d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/test269-d.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/testTokenizerVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/testTokenizerVersion.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/testcases-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/testcases-data.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/translate-testcase-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/translate-testcase-data.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/translate-with-number.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/translate-with-number.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/utterance-without-hyphen.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/utterance-without-hyphen.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/v6WithoutPhraseLists.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/v6WithoutPhraseLists.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/testcases/v7app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/testcases/v7app.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/en/qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/en/qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/en/qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/en/qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/en/translateLuResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/en/translateLuResponse.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/allEntities.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/allEntities.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/bad.lu: -------------------------------------------------------------------------------- 1 | ? foo bar -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/fileRef.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/fileRef.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/labelledEntityValue.lu: -------------------------------------------------------------------------------- 1 | # Greeting 2 | - hi {time = morning} -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/newEntity.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/newEntity.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/normalizedValue.lu: -------------------------------------------------------------------------------- 1 | $ simple : one = 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/options.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/options.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/phraseList.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/phraseList.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/files/qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/files/qnaContent.lu: -------------------------------------------------------------------------------- 1 | # ? hello 2 | ```markdown -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/fr/qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/fr/qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/fr/qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/fr/qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/fr/root.luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/fr/root.luis.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/serviceresponses/qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/serviceresponses/qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translateLuResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/translateLuResponse.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translateLuisResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/translateLuisResponse.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/fileRef.lu: -------------------------------------------------------------------------------- 1 | [Süß](https://docs.microsoft.com/en-in/azure/cognitive-services/qnamaker/faqs) 2 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/labelledEntityValue.lu: -------------------------------------------------------------------------------- 1 | # Greeting 2 | - Hallo {time = morgen} 3 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/newEntity.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/newEntity.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/normalizedValue.lu: -------------------------------------------------------------------------------- 1 | $ simple : one = 2 | - un 3 | 4 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/options.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/options.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/qna.lu: -------------------------------------------------------------------------------- 1 | ### ? Wie ändere ich die Standardmeldung 2 | 3 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/translation/translatedfiles/qnaContent.lu: -------------------------------------------------------------------------------- 1 | # ? Hallo 2 | ```markdown 3 | -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/1.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/11.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/12.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/12qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/12qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/13.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/3.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/4.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/5.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/6.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/7.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/9.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/9a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/9a.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/Child_Entity_With_Spaces.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/Child_Entity_With_Spaces.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/LUISAppWithPAInherits.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/LUISAppWithPAInherits.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/LUISAppWithPAInherits.lu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/LUISAppWithPAInherits.lu.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/Calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/Calendar.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/Email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/Email.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/ToDo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/Skills/ToDo.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/all-entity-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/all-entity-types.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/all-qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/all-qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/all.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/allGen.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/allGen.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/allGenQnA.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/allGenQnA.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/allRefresh.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/allRefresh.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/allall-qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/allall-qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/alterations_qna4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/alterations_qna4.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/buyChocolate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/buyChocolate.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/calendar_all_prebuilt.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/calendar_all_prebuilt.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/collate-qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/collate-qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/collate_Alterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/collate_Alterations.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/collate_alteration_gen.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/collate_alteration_gen.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/collate_refresh.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/collate_refresh.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/collated-luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/collated-luis.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/de/all.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/de/all.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/de/faq.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/de/faq.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/de/reduced.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/de/reduced.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/de/translate-with-number.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/de/translate-with-number.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/emptyIntentDescriptors.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/emptyIntentDescriptors.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/importUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/importUrl.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/luis_sorted.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/luis_sorted.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/merge_intents_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/merge_intents_disabled.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatureGen.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatureGen.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatures.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatures.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/modelAsFeatures.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/modelInfo.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/modelInfo.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/multiturn.json.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/multiturn.json.qna -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/multiturn.qna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/multiturn.qna.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntity.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntity.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntity.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntityInUtterance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntityInUtterance.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntityInUtterance.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/nDepthEntityInUtterance.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/newEntity1.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/newEntity1.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/newEntity2.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/newEntity2.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/newEntityWithFeatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/newEntityWithFeatures.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/newEntityWithFeatures.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/newEntityWithFeatures.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/plFeatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/plFeatures.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/plFeatures.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/plFeatures.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/plWithFlags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/plWithFlags.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt-entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt-entity.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt_mode.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt_mode.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt_model_parse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/prebuilt_model_parse.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/qna5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/qna5.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/qna_a_sorted.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/qna_a_sorted.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/qna_sorted.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/qna_sorted.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref1.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref14_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref14_a.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref15_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref15_a.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref4.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref5.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref6.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref7.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/ref8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/ref8.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/referenceUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/referenceUrl.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/referenceUrlWithWildCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/referenceUrlWithWildCard.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/regexmodel.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/regexmodel.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/root.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/root2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/root2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/root2_luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/root2_luis.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/root3.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/root3.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/root_luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/root_luis.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/section_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/section_disabled.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/section_disabled2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/section_disabled2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/section_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/section_enabled.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/section_enabled2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/section_enabled2.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/sorted.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/sorted.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/stdin-qna.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/stdin-qna.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/stdin.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/stdin.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/test269-d.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/test269-d.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v5Upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v5Upgrade.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v5UpgradeTest.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v5UpgradeTest.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v6WithoutPhraseLists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v6WithoutPhraseLists.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v7UpgradeTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v7UpgradeTest.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v7UpgradeTest.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v7UpgradeTest.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v7app.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v7app.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/v7app_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/v7app_c.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/fixtures/verified/zh-Hans/reduced.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/fixtures/verified/zh-Hans/reduced.lu -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/hook.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/mocha.opts -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/cross-train/crossTrainer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/cross-train/crossTrainer.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lu/lu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lu/lu.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lubuild/lubuild.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lubuild/lubuild.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/appKbMetaData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/appKbMetaData.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/classes/classes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/classes/classes.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/helpers.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/luQnAFileReference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/luQnAFileReference.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/luis.boundary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/luis.boundary.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/lutranslator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/lutranslator.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.comments.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.comments.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.parseFile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.parseFile.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.qnafile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.qnafile.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.roleTest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/parseFileContents.roleTest.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/qnaMultiTurnAndReferences.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/qnaMultiTurnAndReferences.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/sectionapi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/sectionapi.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/lufile/urlReference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/lufile/urlReference.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/luis/luisBuilder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/luis/luisBuilder.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/qna/qnaMakerBuilder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/qna/qnaMakerBuilder.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/parser/qnabuild/qnabuild.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/parser/qnabuild/qnabuild.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/tsconfig.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/test/utils/filehelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/test/utils/filehelper.test.js -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/tsconfig.json -------------------------------------------------------------------------------- /parsers/LU/JS/packages/lu/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/packages/lu/tslint.json -------------------------------------------------------------------------------- /parsers/LU/JS/rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/rush.json -------------------------------------------------------------------------------- /parsers/LU/JS/scripts/fixurls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/parsers/LU/JS/scripts/fixurls.js -------------------------------------------------------------------------------- /schemas/component/component.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/component/component.schema -------------------------------------------------------------------------------- /schemas/component/definitions.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/component/definitions.schema -------------------------------------------------------------------------------- /schemas/component/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/component/readme.md -------------------------------------------------------------------------------- /schemas/component/v1.0/component.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/component/v1.0/component.schema -------------------------------------------------------------------------------- /schemas/protocol/botframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/protocol/botframework.json -------------------------------------------------------------------------------- /schemas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/readme.md -------------------------------------------------------------------------------- /schemas/skills/SchemaManifestTests/SchemaManifestTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/SchemaManifestTests/SchemaManifestTests.csproj -------------------------------------------------------------------------------- /schemas/skills/SchemaManifestTests/SchemaManifestTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/SchemaManifestTests/SchemaManifestTests.sln -------------------------------------------------------------------------------- /schemas/skills/SchemaManifestTests/ValidateSchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/SchemaManifestTests/ValidateSchemaTests.cs -------------------------------------------------------------------------------- /schemas/skills/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/readme.md -------------------------------------------------------------------------------- /schemas/skills/skill-manifest-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/skill-manifest-2.0.0.json -------------------------------------------------------------------------------- /schemas/skills/skill-manifest-2.1.preview-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/skill-manifest-2.1.preview-1.json -------------------------------------------------------------------------------- /schemas/skills/v2.0/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.0/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.0/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.0/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.0/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.0/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.0/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.0/skill-manifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1.preview-1/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1.preview-1/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1.preview-1/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1.preview-1/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1.preview-1/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1.preview-1/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1.preview-1/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1.preview-1/skill-manifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1/samples/complex-pva-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1/samples/complex-pva-manifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.1/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.1/skill-manifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/complex-pva-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/complex-pva-manifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/complex-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-en.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-en.qna -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-ES.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-ES.qna -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-MX.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-MX.qna -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/language-understanding/SkillBot-en.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/language-understanding/SkillBot-en.lu -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/privacy.html -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/relativeUris/skillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/relativeUris/skillIcon.png -------------------------------------------------------------------------------- /schemas/skills/v2.2/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /schemas/skills/v2.2/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/skills/v2.2/skill-manifest.json -------------------------------------------------------------------------------- /schemas/ui/v1.0/ui.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/schemas/ui/v1.0/ui.schema -------------------------------------------------------------------------------- /specs/botframework-activity/botframework-activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-activity/botframework-activity.md -------------------------------------------------------------------------------- /specs/botframework-activity/botframework-cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-activity/botframework-cards.md -------------------------------------------------------------------------------- /specs/botframework-protocol/botframework-channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-protocol/botframework-channel.json -------------------------------------------------------------------------------- /specs/botframework-protocol/channel-update-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-protocol/channel-update-spec.md -------------------------------------------------------------------------------- /specs/botframework-protocol/directline-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-protocol/directline-1.1.json -------------------------------------------------------------------------------- /specs/botframework-protocol/directline-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/botframework-protocol/directline-3.0.json -------------------------------------------------------------------------------- /specs/component-model/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/component-model/overview.md -------------------------------------------------------------------------------- /specs/manifest/botframework-manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/manifest/botframework-manifest.md -------------------------------------------------------------------------------- /specs/manifest/example.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/manifest/example.man -------------------------------------------------------------------------------- /specs/manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/manifest/manifest.json -------------------------------------------------------------------------------- /specs/testing/images/bot-service-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/images/bot-service-overview.png -------------------------------------------------------------------------------- /specs/testing/skills/SkillsFunctionalTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/SkillsFunctionalTesting.md -------------------------------------------------------------------------------- /specs/testing/skills/SkillsMatrixTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/SkillsMatrixTesting.md -------------------------------------------------------------------------------- /specs/testing/skills/SkillsScopeInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/SkillsScopeInformation.md -------------------------------------------------------------------------------- /specs/testing/skills/media/Chaining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/media/Chaining.jpg -------------------------------------------------------------------------------- /specs/testing/skills/media/Simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/media/Simple.jpg -------------------------------------------------------------------------------- /specs/testing/skills/media/src/SkillsFunctionalTestingDiagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/media/src/SkillsFunctionalTestingDiagrams.pptx -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/AuthWithOAuthCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/AuthWithOAuthCard.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/AuthWithSSO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/AuthWithSSO.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/CardActionsWithInvokes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/CardActionsWithInvokes.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/DraftScenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/DraftScenarios.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/MultiTurnInteraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/MultiTurnInteraction.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/ProactiveMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/ProactiveMessage.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/SingleTurnInteraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/SingleTurnInteraction.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/SkillCallsSkill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/SkillCallsSkill.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/SkillReceivesAttachment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/SkillReceivesAttachment.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/SkillStartsConversation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/SkillStartsConversation.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/TeamsAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/TeamsAPI.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/TeamsSkillWithTaskModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/TeamsSkillWithTaskModule.md -------------------------------------------------------------------------------- /specs/testing/skills/scenarios/UpdateDeleteAdaptiveCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/skills/scenarios/UpdateDeleteAdaptiveCard.md -------------------------------------------------------------------------------- /specs/testing/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/testing/testing.md -------------------------------------------------------------------------------- /specs/transcript/transcript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/specs/transcript/transcript.md -------------------------------------------------------------------------------- /tools/changelog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/tools/changelog/.gitignore -------------------------------------------------------------------------------- /tools/changelog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/tools/changelog/README.md -------------------------------------------------------------------------------- /tools/changelog/git-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/botframework-sdk/HEAD/tools/changelog/git-log.js --------------------------------------------------------------------------------