├── .vs ├── LLMWebApi │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ └── f0605bef-ba09-4ece-ad6b-aa9c5412ca90.vsidx │ └── v17 │ │ ├── .futdcache.v2 │ │ └── .suo └── ProjectEvaluation │ ├── llmwebapi.metadata.v7.bin │ └── llmwebapi.projects.v7.bin ├── LLMWebApi.sln ├── LLMWebApi ├── .editorconfig ├── .gitignore ├── Chatbot │ ├── Bot.cs │ ├── Helpers │ │ ├── ChatFormatter.cs │ │ └── TokenUsage.cs │ ├── Plugins │ │ ├── ChatPlugin.cs │ │ └── MemoryRetriever.cs │ ├── Prompts │ │ ├── ExtractIntent │ │ │ └── ExtractIntent.yaml │ │ ├── MapIntentToCollection │ │ │ └── MapIntentToCollection.yaml │ │ ├── PromptsOptions.cs │ │ └── SearchMemory │ │ │ └── SearchMemory.yaml │ └── VectorDbClient.cs ├── Configuration │ └── Configuration.cs ├── Controllers │ ├── ChatController.cs │ ├── ChatHistoryController.cs │ ├── CollectionController.cs │ └── MemoryController.cs ├── Exceptions │ ├── ConfigurationException.cs │ └── ConfigurationNotFoundException.cs ├── Helpers │ └── ChatHistoryContext.cs ├── LLMWebApi.csproj ├── LLMWebApi.csproj.user ├── LLMWebApi.http ├── LLMWebApi.sln ├── Models │ ├── ChatMessage.cs │ ├── CreateChat.cs │ ├── CustomHttpResponse.cs │ ├── Document.cs │ ├── DocumentDirectory.cs │ ├── DocumentText.cs │ ├── Memory.cs │ └── Page.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── BotService.cs │ ├── ChatHistoryService.cs │ ├── DocumentService.cs │ ├── EmbeddingService.cs │ ├── MemoryService.cs │ └── VectorDbService.cs ├── appsettings.Development.json ├── appsettings.json ├── data │ ├── credit-card-cancel-guidelines.pdf │ ├── fee-and-interests │ │ └── calculation-of-card-fees-and-interest.pdf │ ├── general-terms-conditions-dealing-and-transactions.pdf │ ├── general-terms-n-conditions-2018.pdf │ ├── rights-liabilities-and-obligations-of-cardholder.pdf │ ├── terms-and-conditions │ │ ├── credit-card-terms-and-conditions.pdf │ │ └── hnb-teen-plus-terms-and-conditions.pdf │ └── user-guide-new-personal-online-banking-portal.pdf └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── LLMWebApi.AssemblyInfo.cs │ │ ├── LLMWebApi.AssemblyInfoInputs.cache │ │ ├── LLMWebApi.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── LLMWebApi.GlobalUsings.g.cs │ │ ├── LLMWebApi.MvcApplicationPartsAssemblyInfo.cache │ │ ├── LLMWebApi.MvcApplicationPartsAssemblyInfo.cs │ │ ├── LLMWebApi.assets.cache │ │ ├── LLMWebApi.csproj.AssemblyReference.cache │ │ ├── LLMWebApi.csproj.CopyComplete │ │ ├── LLMWebApi.csproj.CoreCompileInputs.cache │ │ ├── LLMWebApi.csproj.FileListAbsolute.txt │ │ ├── LLMWebApi.dll │ │ ├── LLMWebApi.genruntimeconfig.cache │ │ ├── LLMWebApi.pdb │ │ ├── LLMWebApi.sourcelink.json │ │ ├── apphost.exe │ │ ├── ref │ │ └── LLMWebApi.dll │ │ ├── refint │ │ └── LLMWebApi.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.LLMWebApi.props │ │ ├── msbuild.buildMultiTargeting.LLMWebApi.props │ │ └── msbuild.buildTransitive.LLMWebApi.props │ ├── LLMWebApi.csproj.EntityFrameworkCore.targets │ ├── LLMWebApi.csproj.nuget.dgspec.json │ ├── LLMWebApi.csproj.nuget.g.props │ ├── LLMWebApi.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── README.md /.vs/LLMWebApi/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/LLMWebApi/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/LLMWebApi/FileContentIndex/f0605bef-ba09-4ece-ad6b-aa9c5412ca90.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/LLMWebApi/FileContentIndex/f0605bef-ba09-4ece-ad6b-aa9c5412ca90.vsidx -------------------------------------------------------------------------------- /.vs/LLMWebApi/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/LLMWebApi/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/LLMWebApi/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/LLMWebApi/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/llmwebapi.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/ProjectEvaluation/llmwebapi.metadata.v7.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/llmwebapi.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/.vs/ProjectEvaluation/llmwebapi.projects.v7.bin -------------------------------------------------------------------------------- /LLMWebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi.sln -------------------------------------------------------------------------------- /LLMWebApi/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/.editorconfig -------------------------------------------------------------------------------- /LLMWebApi/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | Migrations/ 3 | db/ -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Bot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Bot.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Helpers/ChatFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Helpers/ChatFormatter.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Helpers/TokenUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Helpers/TokenUsage.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Plugins/ChatPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Plugins/ChatPlugin.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Plugins/MemoryRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Plugins/MemoryRetriever.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Prompts/ExtractIntent/ExtractIntent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Prompts/ExtractIntent/ExtractIntent.yaml -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Prompts/MapIntentToCollection/MapIntentToCollection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Prompts/MapIntentToCollection/MapIntentToCollection.yaml -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Prompts/PromptsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Prompts/PromptsOptions.cs -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/Prompts/SearchMemory/SearchMemory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/Prompts/SearchMemory/SearchMemory.yaml -------------------------------------------------------------------------------- /LLMWebApi/Chatbot/VectorDbClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Chatbot/VectorDbClient.cs -------------------------------------------------------------------------------- /LLMWebApi/Configuration/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Configuration/Configuration.cs -------------------------------------------------------------------------------- /LLMWebApi/Controllers/ChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Controllers/ChatController.cs -------------------------------------------------------------------------------- /LLMWebApi/Controllers/ChatHistoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Controllers/ChatHistoryController.cs -------------------------------------------------------------------------------- /LLMWebApi/Controllers/CollectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Controllers/CollectionController.cs -------------------------------------------------------------------------------- /LLMWebApi/Controllers/MemoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Controllers/MemoryController.cs -------------------------------------------------------------------------------- /LLMWebApi/Exceptions/ConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Exceptions/ConfigurationException.cs -------------------------------------------------------------------------------- /LLMWebApi/Exceptions/ConfigurationNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Exceptions/ConfigurationNotFoundException.cs -------------------------------------------------------------------------------- /LLMWebApi/Helpers/ChatHistoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Helpers/ChatHistoryContext.cs -------------------------------------------------------------------------------- /LLMWebApi/LLMWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/LLMWebApi.csproj -------------------------------------------------------------------------------- /LLMWebApi/LLMWebApi.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/LLMWebApi.csproj.user -------------------------------------------------------------------------------- /LLMWebApi/LLMWebApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/LLMWebApi.http -------------------------------------------------------------------------------- /LLMWebApi/LLMWebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/LLMWebApi.sln -------------------------------------------------------------------------------- /LLMWebApi/Models/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/ChatMessage.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/CreateChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/CreateChat.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/CustomHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/CustomHttpResponse.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/Document.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/DocumentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/DocumentDirectory.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/DocumentText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/DocumentText.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/Memory.cs -------------------------------------------------------------------------------- /LLMWebApi/Models/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Models/Page.cs -------------------------------------------------------------------------------- /LLMWebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Program.cs -------------------------------------------------------------------------------- /LLMWebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /LLMWebApi/Services/BotService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/BotService.cs -------------------------------------------------------------------------------- /LLMWebApi/Services/ChatHistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/ChatHistoryService.cs -------------------------------------------------------------------------------- /LLMWebApi/Services/DocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/DocumentService.cs -------------------------------------------------------------------------------- /LLMWebApi/Services/EmbeddingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/EmbeddingService.cs -------------------------------------------------------------------------------- /LLMWebApi/Services/MemoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/MemoryService.cs -------------------------------------------------------------------------------- /LLMWebApi/Services/VectorDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/Services/VectorDbService.cs -------------------------------------------------------------------------------- /LLMWebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/appsettings.Development.json -------------------------------------------------------------------------------- /LLMWebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/appsettings.json -------------------------------------------------------------------------------- /LLMWebApi/data/credit-card-cancel-guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/credit-card-cancel-guidelines.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/fee-and-interests/calculation-of-card-fees-and-interest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/fee-and-interests/calculation-of-card-fees-and-interest.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/general-terms-conditions-dealing-and-transactions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/general-terms-conditions-dealing-and-transactions.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/general-terms-n-conditions-2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/general-terms-n-conditions-2018.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/rights-liabilities-and-obligations-of-cardholder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/rights-liabilities-and-obligations-of-cardholder.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/terms-and-conditions/credit-card-terms-and-conditions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/terms-and-conditions/credit-card-terms-and-conditions.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/terms-and-conditions/hnb-teen-plus-terms-and-conditions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/terms-and-conditions/hnb-teen-plus-terms-and-conditions.pdf -------------------------------------------------------------------------------- /LLMWebApi/data/user-guide-new-personal-online-banking-portal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/data/user-guide-new-personal-online-banking-portal.pdf -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.GlobalUsings.g.cs -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.assets.cache -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.dll -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.genruntimeconfig.cache -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.pdb -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/LLMWebApi.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/LLMWebApi.sourcelink.json -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/ref/LLMWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/ref/LLMWebApi.dll -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/refint/LLMWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/refint/LLMWebApi.dll -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.build.LLMWebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.build.LLMWebApi.props -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.LLMWebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.LLMWebApi.props -------------------------------------------------------------------------------- /LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.LLMWebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.LLMWebApi.props -------------------------------------------------------------------------------- /LLMWebApi/obj/LLMWebApi.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/LLMWebApi.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /LLMWebApi/obj/LLMWebApi.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/LLMWebApi.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /LLMWebApi/obj/LLMWebApi.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/LLMWebApi.csproj.nuget.g.props -------------------------------------------------------------------------------- /LLMWebApi/obj/LLMWebApi.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/LLMWebApi.csproj.nuget.g.targets -------------------------------------------------------------------------------- /LLMWebApi/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/project.assets.json -------------------------------------------------------------------------------- /LLMWebApi/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/LLMWebApi/obj/project.nuget.cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinithKumudika/Semantic-Kernel-RAG/HEAD/README.md --------------------------------------------------------------------------------