├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CHANGES.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure-pipelines ├── README.md ├── infra-pipeline.yml └── solution-pipeline.yml ├── configuration ├── README.md ├── config │ ├── Authentication.md │ ├── aci │ │ └── config.json │ ├── adf │ │ └── config.json │ ├── aks │ │ └── config.json │ ├── bing │ │ └── config.json │ ├── cogservices │ │ ├── ResponsibleAI.md │ │ └── config.json │ ├── conregistry │ │ └── config.json │ ├── docker │ │ └── config.json │ ├── functions │ │ ├── config.json │ │ ├── entities.json │ │ ├── geolocations.json │ │ ├── graph.json │ │ ├── imgext.json │ │ ├── language.json │ │ ├── mtda.json │ │ ├── mtdext.json │ │ ├── openai.json │ │ ├── text.json │ │ └── vision.json │ ├── graph │ │ └── config.json │ ├── insights │ │ └── config.json │ ├── keyvault │ │ └── config.json │ ├── maps │ │ └── config.json │ ├── openai │ │ └── config.json │ ├── pricing │ │ └── config.json │ ├── search │ │ ├── aliases │ │ │ └── index.json │ │ ├── config.json │ │ ├── datasources │ │ │ ├── documents.json │ │ │ ├── images.json │ │ │ └── translation.json │ │ ├── indexers │ │ │ ├── attachments.json │ │ │ ├── docimg.json │ │ │ ├── documents.json │ │ │ ├── images.json │ │ │ └── translation.json │ │ ├── indexes │ │ │ └── index.json │ │ ├── semantic │ │ │ ├── disable.json │ │ │ └── enable.json │ │ ├── skillsets │ │ │ ├── documents.json │ │ │ └── images.json │ │ └── synonyms │ │ │ └── synonyms.json │ ├── storage │ │ └── config.json │ ├── tika │ │ └── config.json │ ├── vnet │ │ ├── config.json │ │ ├── createpe.json │ │ └── groupid.json │ ├── webapps │ │ ├── config.json │ │ ├── tikaserver.json │ │ └── webappui.json │ └── yaml │ │ ├── cogs-services │ │ ├── ms-keyphrase.yaml │ │ └── ms-language.yaml │ │ ├── entities.yaml │ │ ├── geo.yaml │ │ ├── graph │ │ └── neo4j.yaml │ │ ├── imgext.yaml │ │ ├── language.yaml │ │ ├── mtda.yaml │ │ ├── mtdext.yaml │ │ ├── others │ │ ├── automount.yaml │ │ ├── healthz.yaml │ │ ├── ingress.yaml │ │ └── internal-lb.yaml │ │ ├── textext.yaml │ │ ├── tika.yaml │ │ └── vision.yaml ├── init_env.ps1 ├── monitoring │ └── search │ │ ├── general.http │ │ └── indexers.http └── tests │ ├── bing │ └── websearch.http │ ├── cogs-translation │ └── translate.http │ ├── search │ ├── analyze.http │ ├── autocomplete.http │ ├── search.http │ ├── semantic.http │ ├── spellchecking.http │ └── suggest.http │ ├── skills │ ├── entities │ │ └── Entities.Deduplication.remote.http │ ├── imgext │ │ └── Image.Extraction.remote.http │ ├── language │ │ ├── EntityLinking │ │ │ ├── EntityLinked.1.json │ │ │ ├── EntityLinked.2.json │ │ │ ├── EntityLinked.3.json │ │ │ ├── EntityLinked.4.json │ │ │ └── EntityLinked.remote.http │ │ ├── EntityRecognition │ │ │ ├── EntityRecognition.1.json │ │ │ ├── EntityRecognition.2.json │ │ │ ├── EntityRecognition.3.json │ │ │ └── EntityRecognition.remote.http │ │ ├── KeyPhrases │ │ │ ├── KeyPhrases.1.json │ │ │ ├── KeyPhrases.2.json │ │ │ └── KeyPhrases.remote.http │ │ ├── LanguageDetection │ │ │ ├── LanguageDetection.1.json │ │ │ ├── LanguageDetection.2.json │ │ │ ├── LanguageDetection.3.json │ │ │ ├── LanguageDetection.4.json │ │ │ └── LanguageDetection.remote.http │ │ ├── TextSummarization │ │ │ ├── TextSummarization.1.json │ │ │ └── TextSummarizer.remote.http │ │ └── Translation │ │ │ ├── Translator.1.json │ │ │ ├── Translator.2.json │ │ │ ├── Translator.3.json │ │ │ └── Translator.remote.http │ ├── mtda │ │ └── Metadata.Assign.remote.http │ ├── mtdext │ │ └── Metadata.Extraction.remote.http │ ├── text │ │ ├── Html.Conversion.remote.http │ │ ├── ParagraphsMerge.remote.http │ │ └── TextMesh.remote.http │ └── vision │ │ ├── Analyze │ │ ├── Analyze.1.json │ │ ├── Analyze.4MB.json │ │ └── Analyze.remote.http │ │ ├── AnalyzeDocument │ │ ├── AnalyzeDocument.1.json │ │ └── AnalyzeDocument.remote.http │ │ ├── Describe │ │ ├── Describe.1.json │ │ └── Describe.remote.http │ │ ├── Image.1.json │ │ ├── Normalize │ │ ├── Image.Normalization.remote.http │ │ ├── ImageNormalization.Infography.1.json │ │ ├── ImageNormalization.Infography.2.json │ │ ├── ImageNormalization.Infography.3.json │ │ ├── ImageNormalization.Infography.4.json │ │ ├── ImageNormalization.Infography.5.json │ │ ├── ImageNormalization.Infography.remote.http │ │ ├── ImageNormalization.Large.2.json │ │ ├── ImageNormalization.Large.remote.http │ │ ├── ImageNormalization.PNG.3.json │ │ ├── ImageNormalization.PNG.4.json │ │ ├── ImageNormalization.PNG.5.json │ │ ├── ImageNormalization.PNG.remote.http │ │ ├── ImageNormalization.TIFF.1.json │ │ └── ImageNormalization.TIFF.remote.http │ │ ├── OCRLayout │ │ ├── OCRLayout.1.json │ │ ├── OCRLayout.2.json │ │ ├── OCRLayout.3.json │ │ └── OcrLayout.remote.http │ │ └── Read │ │ ├── Image.Read.1.json │ │ ├── Image.Read.2.json │ │ └── Read.remote.http │ ├── testing.md │ └── tika │ ├── test.sh │ └── tikaheaders.txt ├── data ├── documents │ ├── Energy │ │ ├── 14102020_065528_euregionsweek_2020_slides_3cea_pphelan.pptx │ │ ├── 2020eco.pdf │ │ ├── 2022_nikkei_decarbonization.pdf │ │ ├── California-Energy.jpg │ │ ├── Preventing-Energy-Loss.png │ │ ├── Smart-Home.png │ │ ├── Wind Energy 101.pdf │ │ ├── europe-energy.jpg │ │ └── europe.pdf │ ├── IT │ │ ├── Altair_8800_and_Model_33_ASR_Teletype_.jpg │ │ ├── AzureCognitiveSearchLogo.png │ │ └── Satya_Nadella,_CEO_of_Microsoft,_with_former_CEOs_Bill_Gates,_and_Steve_Ballmer.jpg │ ├── Knowledge Mining │ │ ├── knowledge-mining-auditing-and-risk-compliance.png │ │ ├── knowledge-mining-business-process-management.png │ │ ├── knowledge-mining-content-research.png │ │ ├── knowledge-mining-contract-management.png │ │ ├── knowledge-mining-customer-feedback-and-analytics.png │ │ └── knowledge-mining-digital-asset-management.png │ ├── Licenses │ │ ├── MIT.txt │ │ └── MPL2.txt │ ├── Research │ │ ├── Biodegradable Polymers Past, Present, and Future (Eng).pdf │ │ ├── OIP (1).jpg │ │ ├── OIP.jpg │ │ ├── R.jpg │ │ ├── Ra1810113_g.jpg │ │ ├── ijacv13n2_02.pdf │ │ └── plastic-polymer.jpg │ └── Solution Accelerator │ │ ├── Architecture.png │ │ ├── Deployment_Concept.png │ │ ├── Document_Processing.png │ │ ├── Image_Processing.png │ │ ├── Search_Architecture.png │ │ ├── UI_Architecture.png │ │ ├── banner.png │ │ └── knowledge-mining-content-research.png └── records │ └── records.json ├── deployment ├── .gitignore ├── README.md ├── config │ └── contoso.json ├── init_env.ps1 ├── modules │ ├── core │ │ └── core.psm1 │ ├── infra │ │ └── infra.psm1 │ └── vnet │ │ └── vnet.psm1 └── scripts │ ├── 10_Deploy_Services.ps1 │ ├── 15_Get_Services_Keys.ps1 │ ├── 20_Deploy_Functions.ps1 │ ├── 21_Build_DockerImages.ps1 │ ├── 30_Deploy_WebApps.ps1 │ ├── 40_Initialize_Search.ps1 │ └── 50_Restart_Solution.ps1 ├── docs ├── DEMO.md ├── README.md ├── architecture │ ├── Architecture.png │ ├── README.md │ ├── Search_Architecture.png │ ├── UI_Architecture.png │ └── knowledge-mining-content-research.png ├── configuration │ └── README.md ├── data-science │ └── README.md ├── deployment │ ├── Deployment_Concept.png │ └── README.md ├── graph │ ├── Entity-Product-Pages.png │ ├── Entity-Product.png │ ├── Neo4j-Bloom-Suggestions.png │ ├── Neo4j-Bloom.png │ └── README.md ├── media │ ├── banner.png │ └── dstoolkit.png ├── monitoring │ ├── README.md │ └── media │ │ ├── ApplicationInsights.png │ │ └── MicrosoftClarity.png ├── openai │ ├── README.md │ └── media │ │ ├── TableChatExample.png │ │ ├── architecture-openai.png │ │ └── architecture.png ├── operations │ ├── README.md │ └── media │ │ └── deploy.png ├── pre-reqs │ └── README.md ├── search │ ├── README.md │ └── media │ │ ├── Configuration.png │ │ ├── Document_Processing.png │ │ └── Image_Processing.png ├── security │ └── README.md ├── ui │ ├── README.md │ └── media │ │ ├── All_Vertical.png │ │ ├── Attachments.png │ │ ├── DocumentTranslation.png │ │ ├── Emails.png │ │ ├── Landing_Page_1.png │ │ ├── Landing_Page_2.png │ │ ├── Landing_Page_3.png │ │ ├── Maps_Vertical.png │ │ ├── News_Vertical.png │ │ ├── Tables_Vertical.png │ │ ├── Upload_Data.png │ │ ├── Visuals_Vertical.png │ │ ├── Web_Vertical.png │ │ ├── components │ │ ├── Actions.png │ │ ├── Date-Filter.png │ │ ├── Filter.png │ │ ├── Filter2.png │ │ ├── Navigation.png │ │ ├── News-Navigation.png │ │ └── Options.png │ │ └── details │ │ ├── Document-Details.png │ │ ├── FileMetadata.png │ │ ├── Image-Details.png │ │ ├── Metadata.png │ │ ├── Source.png │ │ ├── Tables.png │ │ ├── Thumbnails.png │ │ ├── Transcript.png │ │ └── Transcript2.png └── vnet │ └── README.md ├── dstoolkit-km.code-workspace ├── overlay └── OVERLAY.md └── src ├── CognitiveSearch.Skills ├── C# │ ├── .dockerignore │ ├── .gitignore │ ├── CognitiveSearch.Skills.sln │ ├── Commons │ │ ├── .dockerignore │ │ ├── BlobHelper.cs │ │ ├── Commons.csproj │ │ ├── CustomStringComparer.cs │ │ ├── DurableInputRecord.cs │ │ ├── HeadersHelper.cs │ │ ├── IConstants.cs │ │ ├── IDocumentEntity.cs │ │ ├── IHelpers.cs │ │ ├── MimeType.cs │ │ ├── ResponseObject.cs │ │ ├── UrlHelper.cs │ │ └── WebAPISkill │ │ │ ├── WebAPISkillContract.cs │ │ │ └── WebApiSkillHelpers.cs │ ├── Entities.Function │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Concatenate.cs │ │ ├── Deduplication.cs │ │ ├── Dockerfile │ │ ├── Entities.Function.csproj │ │ ├── KeyPhrasesCleansing.cs │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ └── host.json │ ├── Geo │ │ └── GeoLocations │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── Countries.json │ │ │ ├── Dockerfile │ │ │ ├── Entities │ │ │ ├── City.cs │ │ │ └── Country.cs │ │ │ ├── Geo.Locations.csproj │ │ │ ├── Locations.cs │ │ │ ├── WorldCities.json │ │ │ └── host.json │ ├── Image │ │ ├── Commons │ │ │ ├── .dockerignore │ │ │ ├── BoundingBox │ │ │ │ ├── Helpers │ │ │ │ │ ├── BoundingBoxConverter.cs │ │ │ │ │ ├── ImageBoxingConfig.cs │ │ │ │ │ ├── ImageBoxingHelper.cs │ │ │ │ │ └── config.json │ │ │ │ └── Models │ │ │ │ │ ├── AbstractPageLayout.cs │ │ │ │ │ ├── AnalyzeResult.cs │ │ │ │ │ ├── NormalizedLine.cs │ │ │ │ │ ├── OcrPageLayoutV2.cs │ │ │ │ │ ├── OcrPageLayoutV3.cs │ │ │ │ │ ├── OcrResponseV2.cs │ │ │ │ │ ├── OcrResponseV3.cs │ │ │ │ │ └── Point.cs │ │ │ ├── Hocr │ │ │ │ ├── HocrDocument.cs │ │ │ │ ├── HocrInput.cs │ │ │ │ ├── HocrMetadata.cs │ │ │ │ └── HocrPage.cs │ │ │ └── Image.Commons.csproj │ │ └── Image.Extraction │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ └── tasks.json │ │ │ ├── Dockerfile │ │ │ ├── DurableImageExtractionSkill.cs │ │ │ ├── Image.Extraction.csproj │ │ │ ├── ImageExtraction.cs │ │ │ ├── ImageExtractionSkill.cs │ │ │ └── host.json │ ├── Metadata │ │ ├── Assignment │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── Assign.cs │ │ │ ├── Constants.cs │ │ │ ├── Dockerfile │ │ │ ├── Metadata.Assignment.csproj │ │ │ ├── Properties │ │ │ │ ├── serviceDependencies.json │ │ │ │ └── serviceDependencies.local.json │ │ │ ├── host.json │ │ │ ├── mapping.json │ │ │ ├── security.json │ │ │ └── source.json │ │ └── Extraction │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ │ ├── Dockerfile │ │ │ ├── DurableMetadataExtractionSkill.cs │ │ │ ├── Metadata.Extraction.csproj │ │ │ ├── MetadataExtractionSkill.cs │ │ │ ├── RecursiveMetadataExtractionSkill.cs │ │ │ └── host.json │ ├── Text.Function │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Distinct.cs │ │ ├── Dockerfile │ │ ├── EntitiesMesh.cs │ │ ├── HtmlConversion.cs │ │ ├── ParagraphsMerge.cs │ │ ├── ParagraphsSplit.cs │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── Text.Function.csproj │ │ ├── TextMerge.cs │ │ ├── TextMesh.cs │ │ ├── Thesaurus.cs │ │ ├── TranslationMerge.cs │ │ ├── host.json │ │ └── thesaurus.json │ └── tests │ │ ├── Entities.Deduplication.local.http │ │ ├── Html.Conversion.local.http │ │ ├── Image.Extraction.local.http │ │ ├── Metadata.Assign.local.http │ │ ├── Metadata.Extraction.local.http │ │ ├── ParagraphsMerge.local.http │ │ ├── TextMesh.local.http │ │ └── TranslationMerge.local.http ├── Python │ ├── Graph │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── DocumentGrapher │ │ │ └── function.json │ │ ├── DocumentGrapherActivity │ │ │ └── function.json │ │ ├── DocumentGrapherHttpStart │ │ │ └── function.json │ │ ├── DocumentGrapherOrchestrator │ │ │ └── function.json │ │ ├── Graph.code-workspace │ │ ├── Status │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── host.json │ │ ├── requirements.txt │ │ ├── shared_code │ │ │ ├── DocumentGrapher │ │ │ │ ├── DocumentGrapher.py │ │ │ │ ├── DocumentGrapherSkill_init.py │ │ │ │ └── Durable │ │ │ │ │ ├── Activity_init.py │ │ │ │ │ ├── HttpStart_init.py │ │ │ │ │ └── Orchestrator_init.py │ │ │ └── Neo4jExamples │ │ │ │ └── example.py │ │ └── tests │ │ │ ├── documentgraph.Durable.local.http │ │ │ ├── documentgraph.local.http │ │ │ └── status.http │ ├── Language │ │ ├── .dockerignore │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── Dockerfile │ │ ├── DocumentTranslation │ │ │ └── function.json │ │ ├── DocumentTranslationActivity │ │ │ └── function.json │ │ ├── DocumentTranslationHttpStart │ │ │ └── function.json │ │ ├── DocumentTranslationOps │ │ │ └── function.json │ │ ├── DocumentTranslationOrchestrator │ │ │ └── function.json │ │ ├── EntityLinking │ │ │ └── function.json │ │ ├── EntityRecognition │ │ │ └── function.json │ │ ├── KeyphrasesExtraction │ │ │ └── function.json │ │ ├── Language.code-workspace │ │ ├── LanguageDetection │ │ │ └── function.json │ │ ├── PIIDetection │ │ │ └── function.json │ │ ├── README.md │ │ ├── Status │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── Summarization │ │ │ └── function.json │ │ ├── Translator │ │ │ └── function.json │ │ ├── host.json │ │ ├── local.requirements.txt │ │ ├── requirements.txt │ │ ├── shared_code │ │ │ ├── DocumentTranslation │ │ │ │ ├── DocumentTranslation.py │ │ │ │ ├── DocumentTranslationSkill_init.py │ │ │ │ ├── Durable │ │ │ │ │ ├── Activity_init.py │ │ │ │ │ ├── HttpStart_init.py │ │ │ │ │ └── Orchestrator_init.py │ │ │ │ └── Operations_init.py │ │ │ ├── EntityLinking_init.py │ │ │ ├── KeyPhrasesExtr_init.py │ │ │ ├── LanguageConstants.py │ │ │ ├── LanguageDetection_init.py │ │ │ ├── NamedEntityRecognition_init.py │ │ │ ├── PIIDetection_init.py │ │ │ ├── Summarization_init.py │ │ │ └── Translator_init.py │ │ └── tests │ │ │ ├── DocumentTranslation │ │ │ ├── DocumentTranslation.local.http │ │ │ ├── DocumentTranslationOps.local.http │ │ │ └── DurableDocumentTranslation.local.http │ │ │ ├── NamedEntityRecognition.local.http │ │ │ ├── PIIDetection.local.http │ │ │ ├── Summarizer.local.http │ │ │ ├── TextTranslation.local.http │ │ │ ├── TokenMatcher.local.http │ │ │ ├── entityLinked.local.http │ │ │ ├── keyphrases.local.http │ │ │ └── languageDetection.local.http │ ├── OpenAI │ │ ├── .dockerignore │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── ChatCompletion │ │ │ └── function.json │ │ ├── ChatGraph │ │ │ └── function.json │ │ ├── ChatRetrieve │ │ │ └── function.json │ │ ├── Completion │ │ │ └── function.json │ │ ├── Dockerfile │ │ ├── OpenAI.code-workspace │ │ ├── README.md │ │ ├── Status │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── host.json │ │ ├── requirements.txt │ │ ├── shared_code │ │ │ ├── ChatCompletion_init.py │ │ │ ├── ChatGraph_init.py │ │ │ ├── Completion_init.py │ │ │ └── pgdemo │ │ │ │ ├── ChatRetrieve_init.py │ │ │ │ ├── app.py │ │ │ │ ├── approaches │ │ │ │ ├── approach.py │ │ │ │ ├── chatreadretrieveread.py │ │ │ │ ├── readdecomposeask.py │ │ │ │ ├── readretrieveread.py │ │ │ │ └── retrievethenread.py │ │ │ │ ├── data │ │ │ │ └── employeeinfo.csv │ │ │ │ ├── langchainadapters.py │ │ │ │ ├── lookuptool.py │ │ │ │ └── text.py │ │ └── tests │ │ │ ├── ChatCompletion.local.http │ │ │ ├── ChatRetrieve.local.http │ │ │ ├── Completion.local.http │ │ │ └── Status.local.http │ └── Vision │ │ ├── .dockerignore │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── Analyze │ │ └── function.json │ │ ├── AnalyzeDocument │ │ └── function.json │ │ ├── AnalyzeDomain │ │ └── function.json │ │ ├── Describe │ │ └── function.json │ │ ├── Dockerfile │ │ ├── Normalize │ │ └── function.json │ │ ├── README.md │ │ ├── Read │ │ └── function.json │ │ ├── Status │ │ ├── __init__.py │ │ └── function.json │ │ ├── Vision.code-workspace │ │ ├── azureocrlayout │ │ └── function.json │ │ ├── host.json │ │ ├── requirements.txt │ │ ├── shared_code │ │ ├── AnalyzeDocument__init.py │ │ ├── AnalyzeDomain_init.py │ │ ├── AnalyzeImage_init.py │ │ ├── DescribeImage_init.py │ │ ├── ImageNormalization_init.py │ │ ├── OCRlayout_init.py │ │ └── Read_init.py │ │ └── tests │ │ ├── Analyze │ │ ├── Analyze.local.http │ │ └── Analyze4MB.local.http │ │ ├── AnalyzeDocument │ │ ├── AnalyzeDocument.local.1.json │ │ ├── AnalyzeDocument.local.2.json │ │ ├── AnalyzeDocument.local.3.json │ │ └── AnalyzeDocument.local.http │ │ ├── Describe │ │ └── Describe.local.http │ │ ├── Normalize │ │ ├── local.ImagNormalization.Large.http │ │ ├── local.ImagNormalization.PNG.http │ │ ├── local.ImageNormalization.TIFF.http │ │ └── local.ImageNormalization.http │ │ ├── OCRLayout │ │ └── OcrLayout.local.http │ │ ├── Read │ │ └── Read.local.http │ │ ├── test1.gif │ │ ├── test2.png │ │ ├── test3.png │ │ ├── test4.jpeg │ │ ├── test5_multipage_tif_example.tif │ │ └── test6_multipage_tiff_example.tif └── README.md ├── CognitiveSearch.UI ├── .dockerignore ├── .gitignore ├── CognitiveSearch.UI.sln ├── CognitiveSearch.UI │ ├── CognitiveSearch.UI.csproj │ ├── Configuration │ │ ├── AppConfig.cs │ │ ├── ApplicationInsights.cs │ │ ├── ClarityConfig.cs │ │ ├── OrganizationConfig.cs │ │ ├── UIConfig.cs │ │ ├── WebAPIBackend.cs │ │ └── WebConfig.cs │ ├── Controllers │ │ ├── AbstractSearchViewController.cs │ │ ├── AbstractViewController.cs │ │ ├── AdminController.cs │ │ ├── AnswersController.cs │ │ ├── GraphController.cs │ │ ├── HomeController.cs │ │ ├── ImagesController.cs │ │ ├── M365Controller.cs │ │ ├── MapController.cs │ │ ├── NewsController.cs │ │ ├── OpenAIController.cs │ │ ├── TablesController.cs │ │ ├── WebController.cs │ │ └── api │ │ │ └── ConfigController.cs │ ├── Models │ │ ├── AbstractPage.cs │ │ ├── ClientAction.cs │ │ ├── DashboardPage.cs │ │ ├── ErrorViewModel.cs │ │ ├── Localization.cs │ │ ├── SearchVertical.cs │ │ ├── SearchViewModel.cs │ │ └── Suggestion.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Admin │ │ │ ├── SearchStats.cshtml │ │ │ └── UploadData.cshtml │ │ ├── Answers │ │ │ └── Index.cshtml │ │ ├── Graph │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Search.cshtml │ │ ├── Images │ │ │ └── Index.cshtml │ │ ├── M365 │ │ │ └── Index.cshtml │ │ ├── Map │ │ │ └── Index.cshtml │ │ ├── News │ │ │ └── Index.cshtml │ │ ├── OpenAI │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _DetailsModal.cshtml │ │ │ ├── _Footer.cshtml │ │ │ ├── _Header.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _NavigationPartial.cshtml │ │ │ ├── _NewsNavigationPartial.cshtml │ │ │ ├── _PreviewModal.cshtml │ │ │ ├── _QuickViewModal.cshtml │ │ │ ├── _SearchBoxInput.cshtml │ │ │ ├── _SearchFilterPartial.cshtml │ │ │ ├── _SearchOptionsPartial.cshtml │ │ │ ├── _SimpleFooter.cshtml │ │ │ ├── _SimpleHeader.cshtml │ │ │ ├── _SimpleLayout.cshtml │ │ │ ├── _UserModal.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Tables │ │ │ └── Index.cshtml │ │ ├── Web │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── bundleconfig.json │ ├── config.json │ ├── graph.json │ ├── libman.json │ ├── web.config │ └── wwwroot │ │ ├── config │ │ ├── actions.json │ │ ├── details.json │ │ ├── maps.json │ │ ├── news-facets.json │ │ ├── search-facets.json │ │ └── suggestions.json │ │ ├── css │ │ ├── colors.css │ │ ├── iframe.css │ │ ├── site.css │ │ └── tags.css │ │ ├── data │ │ ├── countries-fc.json │ │ └── countries-list.json │ │ ├── favicon.ico │ │ ├── icons │ │ ├── 10035-icon-service-App-Services.svg │ │ ├── 10044-icon-service-Search-Services.svg │ │ ├── 10818-icon-service-Location.svg │ │ ├── 10834-icon-service-Search.svg │ │ ├── 10841-icon-service-Table.svg │ │ ├── 10854-icon-service-Media.svg │ │ ├── M365.png │ │ ├── SharePoint_48x48.png │ │ ├── SharePoint_64x64.png │ │ ├── bi-chat-square-text.svg │ │ ├── bi-chat-square.svg │ │ ├── bi-cloud-upload.svg │ │ ├── bi-diagram-3.svg │ │ ├── bi-envelope.svg │ │ ├── bi-file-image.svg │ │ ├── bi-files.svg │ │ ├── bi-image.svg │ │ ├── bi-images.svg │ │ ├── bi-list-ul.svg │ │ ├── bi-paperclip.svg │ │ ├── bi-person-square.svg │ │ ├── bi-table.svg │ │ ├── bi-translate.svg │ │ ├── chat.svg │ │ ├── email.svg │ │ ├── feed.png │ │ ├── folder.svg │ │ ├── genericfile.svg │ │ ├── github.svg │ │ ├── html.svg │ │ ├── html16.svg │ │ ├── iNoPreview.svg │ │ ├── icdocx.svg │ │ ├── icindex.svg │ │ ├── icone.svg │ │ ├── icpdf.svg │ │ ├── icpptx.svg │ │ ├── icvisiogeneric.svg │ │ ├── icvsdx.svg │ │ ├── icxlsx.svg │ │ ├── iczip.svg │ │ ├── newBing_ic_16.svg │ │ ├── newBing_ic_24.svg │ │ ├── newBing_ic_32.svg │ │ ├── newBing_ic_48.svg │ │ ├── newBing_ic_48_Responsive.svg │ │ ├── newtab.png │ │ ├── photo.svg │ │ ├── search.svg │ │ ├── sharepoint.png │ │ ├── sign.svg │ │ ├── site.svg │ │ ├── video.svg │ │ └── yammer.svg │ │ ├── images │ │ ├── logos │ │ │ ├── ChatGPT.svg │ │ │ ├── M365.png │ │ │ ├── OpenAI.png │ │ │ ├── azure.png │ │ │ ├── dstoolkit.png │ │ │ ├── microsoft-logo.png │ │ │ ├── oai-logo.png │ │ │ └── provider-logo.png │ │ └── wallpapers │ │ │ └── dstoolkit.png │ │ ├── js │ │ ├── common.js │ │ ├── commons │ │ │ ├── actions.js │ │ │ ├── facets.js │ │ │ ├── openai.js │ │ │ ├── suggestions.js │ │ │ ├── tags.js │ │ │ └── telemetry.js │ │ ├── config.js │ │ ├── details.js │ │ ├── details │ │ │ ├── chat.js │ │ │ ├── embedded.js │ │ │ ├── entities.js │ │ │ ├── file.js │ │ │ ├── html.js │ │ │ ├── kvp.js │ │ │ ├── metadata.js │ │ │ ├── parent.js │ │ │ ├── siblings.js │ │ │ ├── transcript.js │ │ │ └── translation.js │ │ ├── graph │ │ │ ├── force-directed-graph.js │ │ │ ├── icicle.js │ │ │ ├── sankey.js │ │ │ └── sunburst.js │ │ ├── site.js │ │ ├── utils.js │ │ └── views │ │ │ ├── search-all.js │ │ │ ├── search-answers.js │ │ │ ├── search-graph.js │ │ │ ├── search-home.js │ │ │ ├── search-images.js │ │ │ ├── search-maps.js │ │ │ ├── search-news.js │ │ │ ├── search-tables.js │ │ │ └── search-web.js │ │ ├── lib │ │ ├── boolie │ │ │ ├── daterangepicker-bs2.css │ │ │ ├── daterangepicker-bs3.css │ │ │ ├── daterangepicker.js │ │ │ └── moment.min.js │ │ ├── dropzone │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── basic.min.css │ │ │ │ ├── dropzone.css │ │ │ │ └── dropzone.min.css │ │ │ │ └── js │ │ │ │ ├── dropzone-amd-module.js │ │ │ │ ├── dropzone-amd-module.min.js │ │ │ │ ├── dropzone.js │ │ │ │ └── dropzone.min.js │ │ ├── jquery-typeahead │ │ │ └── typeahead.bundle.min.js │ │ ├── jquery-validate │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ ├── jquery-validation-unobtrusive │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ └── popper │ │ │ ├── popper.min.js │ │ │ └── popper.min.js.map │ │ └── maps │ │ ├── GeoJSONModule.min.js │ │ ├── azure-maps-fullscreen-control.min.js │ │ ├── azure-maps-html-marker-layer.min.js │ │ ├── azure-maps-leaflet.min.js │ │ ├── azure-maps-selection-control.min.css │ │ └── azure-maps-selection-control.min.js ├── Knowledge.API │ ├── Controllers │ │ ├── AbstractApiController.cs │ │ ├── AnswersController.cs │ │ ├── DocumentController.cs │ │ ├── GraphController.cs │ │ ├── LanguageController.cs │ │ ├── MapController.cs │ │ ├── NewsController.cs │ │ ├── OpenAIController.cs │ │ ├── SearchController.cs │ │ ├── StorageController.cs │ │ └── WebController.cs │ ├── Dockerfile │ ├── Knowledge.API.csproj │ ├── Models │ │ ├── ApiChatRequest.cs │ │ ├── ApiGraphRequest.cs │ │ ├── ApiMetadataRequest.cs │ │ ├── ApiSearchRequest.cs │ │ ├── ApiSuggestionRequest.cs │ │ └── ApiWebRequest.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Knowledge.Configuration │ ├── AbstractServiceConfig.cs │ ├── Answers │ │ ├── AnswersConfig.cs │ │ ├── Language │ │ │ └── LanguageConfig.cs │ │ └── QnA │ │ │ └── QnAConfig.cs │ ├── AzureStorage │ │ └── StorageConfig.cs │ ├── Chat │ │ └── ChatConfig.cs │ ├── Graph │ │ ├── GraphConfig.cs │ │ ├── GraphType.cs │ │ └── Neo4jConfig.cs │ ├── IServiceProvider.cs │ ├── Knowledge.Configuration.csproj │ ├── Maps │ │ └── MapConfig.cs │ ├── MicrosoftSearch │ │ └── MicrosoftSearchConfig.cs │ ├── OpenAI │ │ └── OpenAIConfig.cs │ ├── QueryServiceConfig.cs │ ├── SearchServiceConfig.cs │ ├── SemanticSearch │ │ └── SemanticSearchConfig.cs │ ├── SharePointSearch │ │ └── SharePointSearchConfig.cs │ ├── SpellChecking │ │ └── SpellCheckingConfig.cs │ ├── Translation │ │ └── TranslationConfig.cs │ └── WebSearch │ │ └── WebSearchConfig.cs ├── Knowledge.Models │ ├── Answers │ │ └── Answer.cs │ ├── IResultItem.cs │ ├── Ingress │ │ ├── IngressSearchRequest.cs │ │ └── IngressSuggestionRequest.cs │ ├── Knowledge.Models.csproj │ ├── QueryParameters.cs │ ├── SearchConstants.cs │ ├── SearchFacet.cs │ ├── SearchModel.cs │ ├── SearchPermission.cs │ ├── SearchRequest.cs │ ├── SearchResponse.cs │ ├── SearchSchema.cs │ └── UserOptions.cs ├── Knowledge.Services │ ├── AbstractService.cs │ ├── Answers │ │ ├── AnswersService.cs │ │ ├── IAnswersProvider.cs │ │ ├── IAnswersService.cs │ │ ├── Language │ │ │ └── LanguageService.cs │ │ └── QnA │ │ │ ├── QnAResponse.cs │ │ │ └── QnAService.cs │ ├── AzureSearch │ │ ├── AbstractSearchService.cs │ │ ├── AzureSearchService.cs │ │ ├── AzureSearchServiceRequest.cs │ │ ├── AzureSearchServiceResponse.cs │ │ ├── AzureSearchSimilarParameters.cs │ │ ├── IAzureSearchService.cs │ │ ├── REST │ │ │ ├── AzureSearchRESTRequest .cs │ │ │ ├── AzureSearchRESTResponse.cs │ │ │ └── AzureSearchRESTService.cs │ │ └── SDK │ │ │ ├── AbstractSearchSDKService.cs │ │ │ ├── AzureSearchSDKService.cs │ │ │ └── IAzureSearchSDKService.cs │ ├── AzureStorage │ │ ├── IStorageService.cs │ │ └── StorageService.cs │ ├── Chat │ │ ├── ChatRequest.cs │ │ ├── ChatService.cs │ │ ├── IChatProvider.cs │ │ └── IChatService.cs │ ├── Graph │ │ ├── Custom │ │ │ ├── GraphRequest.cs │ │ │ ├── GraphResponse.cs │ │ │ ├── GraphService.cs │ │ │ └── IGraphCustomService.cs │ │ ├── Facet │ │ │ ├── FacetGraphService.cs │ │ │ ├── IFacetGraphService.cs │ │ │ └── JsonGraphResponse.cs │ │ ├── GraphRequest.cs │ │ └── GraphType.cs │ ├── Helpers │ │ ├── BlobHelper.cs │ │ ├── ContentSourcesHelper.cs │ │ ├── FacetHelper.cs │ │ ├── LoggerHelper.cs │ │ ├── MimeType.cs │ │ ├── PermissionsHelper.cs │ │ ├── QueryHelper.cs │ │ └── UrlHelper.cs │ ├── IQueryService.cs │ ├── Knowledge.Services.csproj │ ├── Metadata │ │ ├── IMetadataService.cs │ │ ├── MetadataRequest.cs │ │ └── MetadataService.cs │ ├── MicrosoftSearch │ │ └── MicrosoftSearchService.cs │ ├── News │ │ └── FeedFacet.cs │ ├── OpenAI │ │ ├── IOpenAIService.cs │ │ └── OpenAIService.cs │ ├── QueryService.cs │ ├── SemanticSearch │ │ ├── ISemanticSearchService.cs │ │ └── SemanticSearch.cs │ ├── ServicesConstants.cs │ ├── SharePointSearch │ │ └── SharePointSearch.cs │ ├── SpellChecking │ │ ├── ACS │ │ │ └── ACSSpellCheckingService.cs │ │ ├── Bing │ │ │ └── BingSpellCheckingService.cs │ │ ├── ISpellCheckingProvider.cs │ │ ├── ISpellCheckingService.cs │ │ └── SpellCheckingService.cs │ ├── Translation │ │ ├── ITranslationService.cs │ │ └── TranslationService.cs │ └── WebSearch │ │ ├── IWebSearchService.cs │ │ ├── WebSearchRequest.cs │ │ └── WebSearchService.cs └── README.md ├── Data Science └── README.md └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure-pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/azure-pipelines/README.md -------------------------------------------------------------------------------- /azure-pipelines/infra-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/azure-pipelines/infra-pipeline.yml -------------------------------------------------------------------------------- /azure-pipelines/solution-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/azure-pipelines/solution-pipeline.yml -------------------------------------------------------------------------------- /configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/README.md -------------------------------------------------------------------------------- /configuration/config/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/Authentication.md -------------------------------------------------------------------------------- /configuration/config/aci/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/aci/config.json -------------------------------------------------------------------------------- /configuration/config/adf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/adf/config.json -------------------------------------------------------------------------------- /configuration/config/aks/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/aks/config.json -------------------------------------------------------------------------------- /configuration/config/bing/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/bing/config.json -------------------------------------------------------------------------------- /configuration/config/cogservices/ResponsibleAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/cogservices/ResponsibleAI.md -------------------------------------------------------------------------------- /configuration/config/cogservices/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/cogservices/config.json -------------------------------------------------------------------------------- /configuration/config/conregistry/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/conregistry/config.json -------------------------------------------------------------------------------- /configuration/config/docker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/docker/config.json -------------------------------------------------------------------------------- /configuration/config/functions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/config.json -------------------------------------------------------------------------------- /configuration/config/functions/entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/entities.json -------------------------------------------------------------------------------- /configuration/config/functions/geolocations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/geolocations.json -------------------------------------------------------------------------------- /configuration/config/functions/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/graph.json -------------------------------------------------------------------------------- /configuration/config/functions/imgext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/imgext.json -------------------------------------------------------------------------------- /configuration/config/functions/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/language.json -------------------------------------------------------------------------------- /configuration/config/functions/mtda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/mtda.json -------------------------------------------------------------------------------- /configuration/config/functions/mtdext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/mtdext.json -------------------------------------------------------------------------------- /configuration/config/functions/openai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/openai.json -------------------------------------------------------------------------------- /configuration/config/functions/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/text.json -------------------------------------------------------------------------------- /configuration/config/functions/vision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/functions/vision.json -------------------------------------------------------------------------------- /configuration/config/graph/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/graph/config.json -------------------------------------------------------------------------------- /configuration/config/insights/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/insights/config.json -------------------------------------------------------------------------------- /configuration/config/keyvault/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/keyvault/config.json -------------------------------------------------------------------------------- /configuration/config/maps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/maps/config.json -------------------------------------------------------------------------------- /configuration/config/openai/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/openai/config.json -------------------------------------------------------------------------------- /configuration/config/pricing/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/pricing/config.json -------------------------------------------------------------------------------- /configuration/config/search/aliases/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/aliases/index.json -------------------------------------------------------------------------------- /configuration/config/search/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/config.json -------------------------------------------------------------------------------- /configuration/config/search/datasources/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/datasources/documents.json -------------------------------------------------------------------------------- /configuration/config/search/datasources/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/datasources/images.json -------------------------------------------------------------------------------- /configuration/config/search/datasources/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/datasources/translation.json -------------------------------------------------------------------------------- /configuration/config/search/indexers/attachments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexers/attachments.json -------------------------------------------------------------------------------- /configuration/config/search/indexers/docimg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexers/docimg.json -------------------------------------------------------------------------------- /configuration/config/search/indexers/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexers/documents.json -------------------------------------------------------------------------------- /configuration/config/search/indexers/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexers/images.json -------------------------------------------------------------------------------- /configuration/config/search/indexers/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexers/translation.json -------------------------------------------------------------------------------- /configuration/config/search/indexes/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/indexes/index.json -------------------------------------------------------------------------------- /configuration/config/search/semantic/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/semantic/disable.json -------------------------------------------------------------------------------- /configuration/config/search/semantic/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/semantic/enable.json -------------------------------------------------------------------------------- /configuration/config/search/skillsets/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/skillsets/documents.json -------------------------------------------------------------------------------- /configuration/config/search/skillsets/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/skillsets/images.json -------------------------------------------------------------------------------- /configuration/config/search/synonyms/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/search/synonyms/synonyms.json -------------------------------------------------------------------------------- /configuration/config/storage/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/storage/config.json -------------------------------------------------------------------------------- /configuration/config/tika/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/tika/config.json -------------------------------------------------------------------------------- /configuration/config/vnet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/vnet/config.json -------------------------------------------------------------------------------- /configuration/config/vnet/createpe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/vnet/createpe.json -------------------------------------------------------------------------------- /configuration/config/vnet/groupid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/vnet/groupid.json -------------------------------------------------------------------------------- /configuration/config/webapps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/webapps/config.json -------------------------------------------------------------------------------- /configuration/config/webapps/tikaserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/webapps/tikaserver.json -------------------------------------------------------------------------------- /configuration/config/webapps/webappui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/webapps/webappui.json -------------------------------------------------------------------------------- /configuration/config/yaml/cogs-services/ms-keyphrase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/cogs-services/ms-keyphrase.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/cogs-services/ms-language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/cogs-services/ms-language.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/entities.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/geo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/geo.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/graph/neo4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/graph/neo4j.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/imgext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/imgext.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/language.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/mtda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/mtda.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/mtdext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/mtdext.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/others/automount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/others/automount.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/others/healthz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/others/healthz.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/others/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/others/ingress.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/others/internal-lb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/others/internal-lb.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/textext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/textext.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/tika.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/tika.yaml -------------------------------------------------------------------------------- /configuration/config/yaml/vision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/config/yaml/vision.yaml -------------------------------------------------------------------------------- /configuration/init_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/init_env.ps1 -------------------------------------------------------------------------------- /configuration/monitoring/search/general.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/monitoring/search/general.http -------------------------------------------------------------------------------- /configuration/monitoring/search/indexers.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/monitoring/search/indexers.http -------------------------------------------------------------------------------- /configuration/tests/bing/websearch.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/bing/websearch.http -------------------------------------------------------------------------------- /configuration/tests/cogs-translation/translate.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/cogs-translation/translate.http -------------------------------------------------------------------------------- /configuration/tests/search/analyze.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/analyze.http -------------------------------------------------------------------------------- /configuration/tests/search/autocomplete.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/autocomplete.http -------------------------------------------------------------------------------- /configuration/tests/search/search.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/search.http -------------------------------------------------------------------------------- /configuration/tests/search/semantic.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/semantic.http -------------------------------------------------------------------------------- /configuration/tests/search/spellchecking.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/spellchecking.http -------------------------------------------------------------------------------- /configuration/tests/search/suggest.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/search/suggest.http -------------------------------------------------------------------------------- /configuration/tests/skills/entities/Entities.Deduplication.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/entities/Entities.Deduplication.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/imgext/Image.Extraction.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/imgext/Image.Extraction.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/language/EntityLinking/EntityLinked.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/EntityLinking/EntityLinked.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/EntityLinking/EntityLinked.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/EntityLinking/EntityLinked.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/EntityLinking/EntityLinked.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/EntityLinking/EntityLinked.3.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/EntityLinking/EntityLinked.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/EntityLinking/EntityLinked.4.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/EntityLinking/EntityLinked.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/EntityLinking/EntityLinked.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/language/KeyPhrases/KeyPhrases.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/KeyPhrases/KeyPhrases.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/KeyPhrases/KeyPhrases.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/KeyPhrases/KeyPhrases.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/KeyPhrases/KeyPhrases.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/KeyPhrases/KeyPhrases.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/language/Translation/Translator.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/Translation/Translator.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/Translation/Translator.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/Translation/Translator.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/Translation/Translator.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/Translation/Translator.3.json -------------------------------------------------------------------------------- /configuration/tests/skills/language/Translation/Translator.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/language/Translation/Translator.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/mtda/Metadata.Assign.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/mtda/Metadata.Assign.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/mtdext/Metadata.Extraction.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/mtdext/Metadata.Extraction.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/text/Html.Conversion.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/text/Html.Conversion.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/text/ParagraphsMerge.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/text/ParagraphsMerge.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/text/TextMesh.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/text/TextMesh.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Analyze/Analyze.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Analyze/Analyze.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Analyze/Analyze.4MB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Analyze/Analyze.4MB.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Analyze/Analyze.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Analyze/Analyze.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/AnalyzeDocument/AnalyzeDocument.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/AnalyzeDocument/AnalyzeDocument.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/AnalyzeDocument/AnalyzeDocument.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/AnalyzeDocument/AnalyzeDocument.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Describe/Describe.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Describe/Describe.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Describe/Describe.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Describe/Describe.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Image.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Image.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/Image.Normalization.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/Image.Normalization.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/ImageNormalization.Large.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/ImageNormalization.Large.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.3.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.4.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/ImageNormalization.PNG.5.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Normalize/ImageNormalization.TIFF.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Normalize/ImageNormalization.TIFF.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/OCRLayout/OCRLayout.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/OCRLayout/OCRLayout.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/OCRLayout/OCRLayout.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/OCRLayout/OCRLayout.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/OCRLayout/OCRLayout.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/OCRLayout/OCRLayout.3.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/OCRLayout/OcrLayout.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/OCRLayout/OcrLayout.remote.http -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Read/Image.Read.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Read/Image.Read.1.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Read/Image.Read.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Read/Image.Read.2.json -------------------------------------------------------------------------------- /configuration/tests/skills/vision/Read/Read.remote.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/skills/vision/Read/Read.remote.http -------------------------------------------------------------------------------- /configuration/tests/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/testing.md -------------------------------------------------------------------------------- /configuration/tests/tika/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/tika/test.sh -------------------------------------------------------------------------------- /configuration/tests/tika/tikaheaders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/configuration/tests/tika/tikaheaders.txt -------------------------------------------------------------------------------- /data/documents/Energy/2020eco.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/2020eco.pdf -------------------------------------------------------------------------------- /data/documents/Energy/2022_nikkei_decarbonization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/2022_nikkei_decarbonization.pdf -------------------------------------------------------------------------------- /data/documents/Energy/California-Energy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/California-Energy.jpg -------------------------------------------------------------------------------- /data/documents/Energy/Preventing-Energy-Loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/Preventing-Energy-Loss.png -------------------------------------------------------------------------------- /data/documents/Energy/Smart-Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/Smart-Home.png -------------------------------------------------------------------------------- /data/documents/Energy/Wind Energy 101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/Wind Energy 101.pdf -------------------------------------------------------------------------------- /data/documents/Energy/europe-energy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/europe-energy.jpg -------------------------------------------------------------------------------- /data/documents/Energy/europe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Energy/europe.pdf -------------------------------------------------------------------------------- /data/documents/IT/Altair_8800_and_Model_33_ASR_Teletype_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/IT/Altair_8800_and_Model_33_ASR_Teletype_.jpg -------------------------------------------------------------------------------- /data/documents/IT/AzureCognitiveSearchLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/IT/AzureCognitiveSearchLogo.png -------------------------------------------------------------------------------- /data/documents/Knowledge Mining/knowledge-mining-content-research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Knowledge Mining/knowledge-mining-content-research.png -------------------------------------------------------------------------------- /data/documents/Knowledge Mining/knowledge-mining-contract-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Knowledge Mining/knowledge-mining-contract-management.png -------------------------------------------------------------------------------- /data/documents/Knowledge Mining/knowledge-mining-digital-asset-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Knowledge Mining/knowledge-mining-digital-asset-management.png -------------------------------------------------------------------------------- /data/documents/Licenses/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Licenses/MIT.txt -------------------------------------------------------------------------------- /data/documents/Licenses/MPL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Licenses/MPL2.txt -------------------------------------------------------------------------------- /data/documents/Research/OIP (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/OIP (1).jpg -------------------------------------------------------------------------------- /data/documents/Research/OIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/OIP.jpg -------------------------------------------------------------------------------- /data/documents/Research/R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/R.jpg -------------------------------------------------------------------------------- /data/documents/Research/Ra1810113_g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/Ra1810113_g.jpg -------------------------------------------------------------------------------- /data/documents/Research/ijacv13n2_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/ijacv13n2_02.pdf -------------------------------------------------------------------------------- /data/documents/Research/plastic-polymer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Research/plastic-polymer.jpg -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/Architecture.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/Deployment_Concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/Deployment_Concept.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/Document_Processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/Document_Processing.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/Image_Processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/Image_Processing.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/Search_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/Search_Architecture.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/UI_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/UI_Architecture.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/banner.png -------------------------------------------------------------------------------- /data/documents/Solution Accelerator/knowledge-mining-content-research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/documents/Solution Accelerator/knowledge-mining-content-research.png -------------------------------------------------------------------------------- /data/records/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/data/records/records.json -------------------------------------------------------------------------------- /deployment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/.gitignore -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/config/contoso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/config/contoso.json -------------------------------------------------------------------------------- /deployment/init_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/init_env.ps1 -------------------------------------------------------------------------------- /deployment/modules/core/core.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/modules/core/core.psm1 -------------------------------------------------------------------------------- /deployment/modules/infra/infra.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/modules/infra/infra.psm1 -------------------------------------------------------------------------------- /deployment/modules/vnet/vnet.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/modules/vnet/vnet.psm1 -------------------------------------------------------------------------------- /deployment/scripts/10_Deploy_Services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/10_Deploy_Services.ps1 -------------------------------------------------------------------------------- /deployment/scripts/15_Get_Services_Keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/15_Get_Services_Keys.ps1 -------------------------------------------------------------------------------- /deployment/scripts/20_Deploy_Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/20_Deploy_Functions.ps1 -------------------------------------------------------------------------------- /deployment/scripts/21_Build_DockerImages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/21_Build_DockerImages.ps1 -------------------------------------------------------------------------------- /deployment/scripts/30_Deploy_WebApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/30_Deploy_WebApps.ps1 -------------------------------------------------------------------------------- /deployment/scripts/40_Initialize_Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/40_Initialize_Search.ps1 -------------------------------------------------------------------------------- /deployment/scripts/50_Restart_Solution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/deployment/scripts/50_Restart_Solution.ps1 -------------------------------------------------------------------------------- /docs/DEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/DEMO.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/architecture/Architecture.png -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/Search_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/architecture/Search_Architecture.png -------------------------------------------------------------------------------- /docs/architecture/UI_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/architecture/UI_Architecture.png -------------------------------------------------------------------------------- /docs/architecture/knowledge-mining-content-research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/architecture/knowledge-mining-content-research.png -------------------------------------------------------------------------------- /docs/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/configuration/README.md -------------------------------------------------------------------------------- /docs/data-science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/data-science/README.md -------------------------------------------------------------------------------- /docs/deployment/Deployment_Concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/deployment/Deployment_Concept.png -------------------------------------------------------------------------------- /docs/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/deployment/README.md -------------------------------------------------------------------------------- /docs/graph/Entity-Product-Pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/graph/Entity-Product-Pages.png -------------------------------------------------------------------------------- /docs/graph/Entity-Product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/graph/Entity-Product.png -------------------------------------------------------------------------------- /docs/graph/Neo4j-Bloom-Suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/graph/Neo4j-Bloom-Suggestions.png -------------------------------------------------------------------------------- /docs/graph/Neo4j-Bloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/graph/Neo4j-Bloom.png -------------------------------------------------------------------------------- /docs/graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/graph/README.md -------------------------------------------------------------------------------- /docs/media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/media/banner.png -------------------------------------------------------------------------------- /docs/media/dstoolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/media/dstoolkit.png -------------------------------------------------------------------------------- /docs/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/monitoring/README.md -------------------------------------------------------------------------------- /docs/monitoring/media/ApplicationInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/monitoring/media/ApplicationInsights.png -------------------------------------------------------------------------------- /docs/monitoring/media/MicrosoftClarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/monitoring/media/MicrosoftClarity.png -------------------------------------------------------------------------------- /docs/openai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/openai/README.md -------------------------------------------------------------------------------- /docs/openai/media/TableChatExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/openai/media/TableChatExample.png -------------------------------------------------------------------------------- /docs/openai/media/architecture-openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/openai/media/architecture-openai.png -------------------------------------------------------------------------------- /docs/openai/media/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/openai/media/architecture.png -------------------------------------------------------------------------------- /docs/operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/operations/README.md -------------------------------------------------------------------------------- /docs/operations/media/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/operations/media/deploy.png -------------------------------------------------------------------------------- /docs/pre-reqs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/pre-reqs/README.md -------------------------------------------------------------------------------- /docs/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/search/README.md -------------------------------------------------------------------------------- /docs/search/media/Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/search/media/Configuration.png -------------------------------------------------------------------------------- /docs/search/media/Document_Processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/search/media/Document_Processing.png -------------------------------------------------------------------------------- /docs/search/media/Image_Processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/search/media/Image_Processing.png -------------------------------------------------------------------------------- /docs/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/security/README.md -------------------------------------------------------------------------------- /docs/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/README.md -------------------------------------------------------------------------------- /docs/ui/media/All_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/All_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/Attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Attachments.png -------------------------------------------------------------------------------- /docs/ui/media/DocumentTranslation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/DocumentTranslation.png -------------------------------------------------------------------------------- /docs/ui/media/Emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Emails.png -------------------------------------------------------------------------------- /docs/ui/media/Landing_Page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Landing_Page_1.png -------------------------------------------------------------------------------- /docs/ui/media/Landing_Page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Landing_Page_2.png -------------------------------------------------------------------------------- /docs/ui/media/Landing_Page_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Landing_Page_3.png -------------------------------------------------------------------------------- /docs/ui/media/Maps_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Maps_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/News_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/News_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/Tables_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Tables_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/Upload_Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Upload_Data.png -------------------------------------------------------------------------------- /docs/ui/media/Visuals_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Visuals_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/Web_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/Web_Vertical.png -------------------------------------------------------------------------------- /docs/ui/media/components/Actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Actions.png -------------------------------------------------------------------------------- /docs/ui/media/components/Date-Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Date-Filter.png -------------------------------------------------------------------------------- /docs/ui/media/components/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Filter.png -------------------------------------------------------------------------------- /docs/ui/media/components/Filter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Filter2.png -------------------------------------------------------------------------------- /docs/ui/media/components/Navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Navigation.png -------------------------------------------------------------------------------- /docs/ui/media/components/News-Navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/News-Navigation.png -------------------------------------------------------------------------------- /docs/ui/media/components/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/components/Options.png -------------------------------------------------------------------------------- /docs/ui/media/details/Document-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Document-Details.png -------------------------------------------------------------------------------- /docs/ui/media/details/FileMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/FileMetadata.png -------------------------------------------------------------------------------- /docs/ui/media/details/Image-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Image-Details.png -------------------------------------------------------------------------------- /docs/ui/media/details/Metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Metadata.png -------------------------------------------------------------------------------- /docs/ui/media/details/Source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Source.png -------------------------------------------------------------------------------- /docs/ui/media/details/Tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Tables.png -------------------------------------------------------------------------------- /docs/ui/media/details/Thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Thumbnails.png -------------------------------------------------------------------------------- /docs/ui/media/details/Transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Transcript.png -------------------------------------------------------------------------------- /docs/ui/media/details/Transcript2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/ui/media/details/Transcript2.png -------------------------------------------------------------------------------- /docs/vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/docs/vnet/README.md -------------------------------------------------------------------------------- /dstoolkit-km.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/dstoolkit-km.code-workspace -------------------------------------------------------------------------------- /overlay/OVERLAY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/overlay/OVERLAY.md -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/CognitiveSearch.Skills.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/CognitiveSearch.Skills.sln -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/BlobHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/BlobHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/Commons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/Commons.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/CustomStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/CustomStringComparer.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/DurableInputRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/DurableInputRecord.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/HeadersHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/HeadersHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/IConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/IConstants.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/IDocumentEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/IDocumentEntity.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/IHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/IHelpers.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/MimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/MimeType.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/ResponseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/ResponseObject.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/UrlHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/WebAPISkill/WebAPISkillContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/WebAPISkill/WebAPISkillContract.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Commons/WebAPISkill/WebApiSkillHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Commons/WebAPISkill/WebApiSkillHelpers.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/Concatenate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/Concatenate.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/Deduplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/Deduplication.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/Entities.Function.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/Entities.Function.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/KeyPhrasesCleansing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/KeyPhrasesCleansing.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Entities.Function/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Entities.Function/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Countries.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Entities/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Entities/City.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Entities/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Entities/Country.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Geo.Locations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Geo.Locations.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/Locations.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/WorldCities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/WorldCities.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Geo/GeoLocations/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Geo/GeoLocations/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/BoundingBox/Helpers/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/BoundingBox/Helpers/config.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/BoundingBox/Models/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/BoundingBox/Models/Point.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrDocument.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrInput.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrMetadata.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/Hocr/HocrPage.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Commons/Image.Commons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Commons/Image.Commons.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/Image.Extraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/Image.Extraction.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/ImageExtraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/ImageExtraction.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/ImageExtractionSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/ImageExtractionSkill.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Image/Image.Extraction/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Image/Image.Extraction/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/Assign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/Assign.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/Constants.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/Metadata.Assignment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/Metadata.Assignment.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/mapping.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/security.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Assignment/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Assignment/source.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/extensions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/launch.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/settings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/Metadata.Extraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/Metadata.Extraction.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/MetadataExtractionSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/MetadataExtractionSkill.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Metadata/Extraction/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Metadata/Extraction/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/Distinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/Distinct.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/EntitiesMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/EntitiesMesh.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/HtmlConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/HtmlConversion.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/ParagraphsMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/ParagraphsMerge.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/ParagraphsSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/ParagraphsSplit.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/Text.Function.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/Text.Function.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/TextMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/TextMerge.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/TextMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/TextMesh.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/Thesaurus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/Thesaurus.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/TranslationMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/TranslationMerge.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/Text.Function/thesaurus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/Text.Function/thesaurus.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/Entities.Deduplication.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/Entities.Deduplication.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/Html.Conversion.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/Html.Conversion.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/Image.Extraction.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/Image.Extraction.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/Metadata.Assign.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/Metadata.Assign.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/Metadata.Extraction.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/Metadata.Extraction.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/ParagraphsMerge.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/ParagraphsMerge.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/TextMesh.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/TextMesh.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/C#/tests/TranslationMerge.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/C#/tests/TranslationMerge.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/.vscode/extensions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/.vscode/launch.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/.vscode/settings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/DocumentGrapher/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/DocumentGrapher/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/DocumentGrapherActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/DocumentGrapherActivity/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/Graph.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/Graph.code-workspace -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/Status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/Status/__init__.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/Status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/Status/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/requirements.txt -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/shared_code/Neo4jExamples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/shared_code/Neo4jExamples/example.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/tests/documentgraph.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/tests/documentgraph.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Graph/tests/status.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Graph/tests/status.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.funcignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.vscode/extensions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.vscode/launch.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.vscode/settings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/DocumentTranslation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/DocumentTranslation/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/EntityLinking/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/EntityLinking/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/EntityRecognition/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/EntityRecognition/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/KeyphrasesExtraction/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/KeyphrasesExtraction/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Language.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Language.code-workspace -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/LanguageDetection/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/LanguageDetection/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/PIIDetection/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/PIIDetection/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/README.md -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Status/__init__.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Status/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Summarization/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Summarization/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/Translator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/Translator/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/local.requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/local.requirements.txt -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/requirements.txt -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/EntityLinking_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/EntityLinking_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/KeyPhrasesExtr_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/KeyPhrasesExtr_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/LanguageConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/LanguageConstants.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/PIIDetection_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/PIIDetection_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/Summarization_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/Summarization_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/shared_code/Translator_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/shared_code/Translator_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/tests/PIIDetection.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/tests/PIIDetection.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/tests/Summarizer.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/tests/Summarizer.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/tests/TokenMatcher.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/tests/TokenMatcher.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/tests/entityLinked.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/tests/entityLinked.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Language/tests/keyphrases.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Language/tests/keyphrases.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.funcignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.vscode/extensions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.vscode/launch.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.vscode/settings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/ChatCompletion/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/ChatCompletion/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/ChatGraph/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/ChatGraph/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/ChatRetrieve/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/ChatRetrieve/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/Completion/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/Completion/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/OpenAI.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/OpenAI.code-workspace -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/README.md -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/Status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/Status/__init__.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/Status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/Status/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/requirements.txt -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/shared_code/ChatGraph_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/shared_code/ChatGraph_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/shared_code/Completion_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/shared_code/Completion_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/app.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/lookuptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/lookuptool.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/shared_code/pgdemo/text.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/tests/ChatCompletion.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/tests/ChatCompletion.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/tests/ChatRetrieve.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/tests/ChatRetrieve.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/tests/Completion.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/tests/Completion.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/OpenAI/tests/Status.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/OpenAI/tests/Status.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.funcignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.vscode/extensions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.vscode/launch.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.vscode/settings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/.vscode/tasks.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Analyze/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Analyze/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/AnalyzeDocument/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/AnalyzeDocument/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/AnalyzeDomain/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/AnalyzeDomain/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Describe/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Describe/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Normalize/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Normalize/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/README.md -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Read/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Read/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Status/__init__.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Status/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/Vision.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/Vision.code-workspace -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/azureocrlayout/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/azureocrlayout/function.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/host.json -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/requirements.txt -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/shared_code/AnalyzeDomain_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/shared_code/AnalyzeDomain_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/shared_code/AnalyzeImage_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/shared_code/AnalyzeImage_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/shared_code/DescribeImage_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/shared_code/DescribeImage_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/shared_code/OCRlayout_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/shared_code/OCRlayout_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/shared_code/Read_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/shared_code/Read_init.py -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/Analyze/Analyze.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/Analyze/Analyze.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/Read/Read.local.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/Read/Read.local.http -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/test1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/test1.gif -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/test2.png -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/test3.png -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/Python/Vision/tests/test4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/Python/Vision/tests/test4.jpeg -------------------------------------------------------------------------------- /src/CognitiveSearch.Skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.Skills/README.md -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/.dockerignore -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/.gitignore -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI.sln -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/CognitiveSearch.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/CognitiveSearch.UI.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/AppConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/ClarityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/ClarityConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/UIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/UIConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/WebAPIBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/WebAPIBackend.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/WebConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Configuration/WebConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/AdminController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/AnswersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/AnswersController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/GraphController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/GraphController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/M365Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/M365Controller.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/MapController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/MapController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/NewsController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/OpenAIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/OpenAIController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/TablesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/TablesController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/WebController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Controllers/WebController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/AbstractPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/AbstractPage.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/ClientAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/ClientAction.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/DashboardPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/DashboardPage.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/Localization.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/SearchVertical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/SearchVertical.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/SearchViewModel.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Models/Suggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Models/Suggestion.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Program.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Startup.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Admin/SearchStats.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Admin/SearchStats.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Admin/UploadData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Admin/UploadData.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Answers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Answers/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Graph/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Graph/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Home/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Home/Search.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Images/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Images/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/M365/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/M365/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Map/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Map/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/News/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/News/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/OpenAI/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/OpenAI/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Footer.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Header.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_UserModal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Shared/_UserModal.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Tables/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Tables/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Web/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/Web/Index.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/bundleconfig.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/config.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/graph.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/libman.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/web.config -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/actions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/details.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/maps.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/news-facets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/news-facets.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/suggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/config/suggestions.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/colors.css -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/iframe.css -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/css/tags.css -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/data/countries-fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/data/countries-fc.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/data/countries-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/data/countries-list.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/M365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/M365.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-chat-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-chat-square.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-diagram-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-diagram-3.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-envelope.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-file-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-file-image.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-files.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-image.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-images.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-list-ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-list-ul.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-paperclip.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-table.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/bi-translate.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/chat.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/email.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/feed.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/folder.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/genericfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/genericfile.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/github.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/html.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/html16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/html16.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/iNoPreview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/iNoPreview.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icdocx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icdocx.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icindex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icindex.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icone.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icpdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icpdf.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icpptx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icpptx.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icvisiogeneric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icvisiogeneric.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icvsdx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icvsdx.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icxlsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/icxlsx.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/iczip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/iczip.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_16.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_24.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_32.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newBing_ic_48.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/newtab.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/photo.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/search.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/sharepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/sharepoint.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/sign.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/site.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/video.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/yammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/icons/yammer.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/ChatGPT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/ChatGPT.svg -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/M365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/M365.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/OpenAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/OpenAI.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/images/logos/azure.png -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/common.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/actions.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/facets.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/openai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/openai.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/tags.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/commons/telemetry.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/config.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/chat.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/embedded.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/entities.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/file.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/html.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/kvp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/kvp.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/metadata.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/parent.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/siblings.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/details/transcript.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/icicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/icicle.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/sankey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/sankey.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/sunburst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/graph/sunburst.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/utils.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-all.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-graph.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-home.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-maps.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-news.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/js/views/search-web.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/lib/boolie/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/lib/boolie/moment.min.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/lib/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/CognitiveSearch.UI/wwwroot/lib/popper/popper.min.js -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/AbstractApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/AbstractApiController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/AnswersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/AnswersController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/DocumentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/DocumentController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/GraphController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/GraphController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/LanguageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/LanguageController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/MapController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/MapController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/NewsController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/OpenAIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/OpenAIController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/SearchController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/StorageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/StorageController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Controllers/WebController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Controllers/WebController.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Dockerfile -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Knowledge.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Knowledge.API.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiChatRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiGraphRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiGraphRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiMetadataRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiMetadataRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiSearchRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiSuggestionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiSuggestionRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Models/ApiWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Models/ApiWebRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Program.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/Startup.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.API/appsettings.json -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/AbstractServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/AbstractServiceConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Answers/AnswersConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Answers/AnswersConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Answers/QnA/QnAConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Answers/QnA/QnAConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Chat/ChatConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Chat/ChatConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Graph/GraphConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Graph/GraphConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Graph/GraphType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Graph/GraphType.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Graph/Neo4jConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Graph/Neo4jConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/IServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/IServiceProvider.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/Maps/MapConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/Maps/MapConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/OpenAI/OpenAIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/OpenAI/OpenAIConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/QueryServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/QueryServiceConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Configuration/SearchServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Configuration/SearchServiceConfig.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/Answers/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/Answers/Answer.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/IResultItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/IResultItem.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/Ingress/IngressSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/Ingress/IngressSearchRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/Knowledge.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/Knowledge.Models.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/QueryParameters.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchConstants.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchFacet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchFacet.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchModel.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchPermission.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchResponse.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/SearchSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/SearchSchema.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Models/UserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Models/UserOptions.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/AbstractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/AbstractService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Answers/AnswersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Answers/AnswersService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Answers/IAnswersProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Answers/IAnswersProvider.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Answers/IAnswersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Answers/IAnswersService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Answers/QnA/QnAResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Answers/QnA/QnAResponse.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Answers/QnA/QnAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Answers/QnA/QnAService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/AzureStorage/IStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/AzureStorage/IStorageService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/AzureStorage/StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/AzureStorage/StorageService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Chat/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Chat/ChatRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Chat/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Chat/ChatService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Chat/IChatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Chat/IChatProvider.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Chat/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Chat/IChatService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphResponse.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/Custom/GraphService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/Facet/FacetGraphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/Facet/FacetGraphService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/Facet/JsonGraphResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/Facet/JsonGraphResponse.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/GraphRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/GraphRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Graph/GraphType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Graph/GraphType.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/BlobHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/BlobHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/ContentSourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/ContentSourcesHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/FacetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/FacetHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/LoggerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/LoggerHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/MimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/MimeType.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/PermissionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/PermissionsHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/QueryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/QueryHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Helpers/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Helpers/UrlHelper.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/IQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/IQueryService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Knowledge.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Knowledge.Services.csproj -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Metadata/IMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Metadata/IMetadataService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Metadata/MetadataRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Metadata/MetadataRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/Metadata/MetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/Metadata/MetadataService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/News/FeedFacet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/News/FeedFacet.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/OpenAI/IOpenAIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/OpenAI/IOpenAIService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/OpenAI/OpenAIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/OpenAI/OpenAIService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/QueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/QueryService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/SemanticSearch/SemanticSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/SemanticSearch/SemanticSearch.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/ServicesConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/ServicesConstants.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/WebSearch/IWebSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/WebSearch/IWebSearchService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/WebSearch/WebSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/WebSearch/WebSearchRequest.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/Knowledge.Services/WebSearch/WebSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/Knowledge.Services/WebSearch/WebSearchService.cs -------------------------------------------------------------------------------- /src/CognitiveSearch.UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/CognitiveSearch.UI/README.md -------------------------------------------------------------------------------- /src/Data Science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/Data Science/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-km-solution-accelerator/HEAD/src/README.md --------------------------------------------------------------------------------