├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── TESTING_GUIDE.md ├── UNIT_TESTS.md └── workflows │ └── unit-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.md ├── README.md ├── SECURITY.md ├── azure.yaml ├── data └── products-text-3-large-1536.json ├── gitignore.txt ├── infra ├── abbreviations.json ├── app │ ├── ai.bicep │ ├── database.bicep │ ├── identity.bicep │ ├── security.bicep │ └── web.bicep ├── azd-hooks │ ├── preprovision.ps1 │ └── preprovision.sh ├── core │ ├── ai │ │ └── cognitive-services │ │ │ ├── account.bicep │ │ │ └── deployment.bicep │ ├── database │ │ └── cosmos-db │ │ │ ├── account.bicep │ │ │ └── nosql │ │ │ ├── account.bicep │ │ │ ├── container.bicep │ │ │ ├── database.bicep │ │ │ └── role │ │ │ ├── assignment.bicep │ │ │ └── definition.bicep │ ├── host │ │ └── app-service │ │ │ ├── config.bicep │ │ │ ├── plan.bicep │ │ │ └── site.bicep │ └── security │ │ ├── identity │ │ └── user-assigned.bicep │ │ └── role │ │ ├── assignment.bicep │ │ └── definition.bicep ├── main.bicep ├── main.parameters.json ├── main.test.bicep └── scripts │ └── azd-role-assignments.sh ├── media ├── config-values.png ├── cosmos-nosql-copilot-diagram.png ├── quickstart-conversational-context.png ├── quickstart-semantic-cache-miss.png ├── quickstart-semantic-cache.png └── screenshot.png ├── ps-rule.yaml ├── quickstart.md └── src ├── cosmos-copilot.AppHost ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.json └── cosmos-copilot.AppHost.csproj ├── cosmos-copilot.ServiceDefaults ├── Extensions.cs └── cosmos-copilot.ServiceDefaults.csproj ├── cosmos-copilot.WebApp ├── .dockerignore ├── App.razor ├── Components │ ├── Confirmation.razor │ └── Input.razor ├── Constants │ ├── Interface.cs │ └── Participants.cs ├── Dockerfile ├── Models │ ├── CacheItem.cs │ ├── Message.cs │ ├── Product.cs │ ├── Session.cs │ └── UserParameters.cs ├── Options │ ├── Chat.cs │ ├── CosmosDb.cs │ └── OpenAi.cs ├── Pages │ ├── ChatPane.razor │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.razor │ ├── NavMenu.razor │ ├── _Host.cshtml │ └── _Layout.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── ChatService.cs │ ├── CosmosDbService.cs │ └── SemanticKernelService.cs ├── Shared │ └── MainLayout.razor ├── _Imports.razor ├── appsettings.json ├── cosmos-copilot.WebApp.csproj ├── nuget.config └── wwwroot │ ├── favicon.ico │ └── js │ └── site.js └── cosmos-copilot.sln /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/TESTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.github/TESTING_GUIDE.md -------------------------------------------------------------------------------- /.github/UNIT_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.github/UNIT_TESTS.md -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/azure.yaml -------------------------------------------------------------------------------- /data/products-text-3-large-1536.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/data/products-text-3-large-1536.json -------------------------------------------------------------------------------- /gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/gitignore.txt -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/app/ai.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/app/ai.bicep -------------------------------------------------------------------------------- /infra/app/database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/app/database.bicep -------------------------------------------------------------------------------- /infra/app/identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/app/identity.bicep -------------------------------------------------------------------------------- /infra/app/security.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/app/security.bicep -------------------------------------------------------------------------------- /infra/app/web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/app/web.bicep -------------------------------------------------------------------------------- /infra/azd-hooks/preprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/azd-hooks/preprovision.ps1 -------------------------------------------------------------------------------- /infra/azd-hooks/preprovision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/azd-hooks/preprovision.sh -------------------------------------------------------------------------------- /infra/core/ai/cognitive-services/account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/ai/cognitive-services/account.bicep -------------------------------------------------------------------------------- /infra/core/ai/cognitive-services/deployment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/ai/cognitive-services/deployment.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/nosql/account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/nosql/account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/nosql/container.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/nosql/container.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/nosql/database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/nosql/database.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/nosql/role/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/nosql/role/assignment.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos-db/nosql/role/definition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/database/cosmos-db/nosql/role/definition.bicep -------------------------------------------------------------------------------- /infra/core/host/app-service/config.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/host/app-service/config.bicep -------------------------------------------------------------------------------- /infra/core/host/app-service/plan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/host/app-service/plan.bicep -------------------------------------------------------------------------------- /infra/core/host/app-service/site.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/host/app-service/site.bicep -------------------------------------------------------------------------------- /infra/core/security/identity/user-assigned.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/security/identity/user-assigned.bicep -------------------------------------------------------------------------------- /infra/core/security/role/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/security/role/assignment.bicep -------------------------------------------------------------------------------- /infra/core/security/role/definition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/core/security/role/definition.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/main.test.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/main.test.bicep -------------------------------------------------------------------------------- /infra/scripts/azd-role-assignments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/infra/scripts/azd-role-assignments.sh -------------------------------------------------------------------------------- /media/config-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/config-values.png -------------------------------------------------------------------------------- /media/cosmos-nosql-copilot-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/cosmos-nosql-copilot-diagram.png -------------------------------------------------------------------------------- /media/quickstart-conversational-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/quickstart-conversational-context.png -------------------------------------------------------------------------------- /media/quickstart-semantic-cache-miss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/quickstart-semantic-cache-miss.png -------------------------------------------------------------------------------- /media/quickstart-semantic-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/quickstart-semantic-cache.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /ps-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/ps-rule.yaml -------------------------------------------------------------------------------- /quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/quickstart.md -------------------------------------------------------------------------------- /src/cosmos-copilot.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.AppHost/Program.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/cosmos-copilot.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.AppHost/appsettings.json -------------------------------------------------------------------------------- /src/cosmos-copilot.AppHost/cosmos-copilot.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.AppHost/cosmos-copilot.AppHost.csproj -------------------------------------------------------------------------------- /src/cosmos-copilot.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.ServiceDefaults/cosmos-copilot.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.ServiceDefaults/cosmos-copilot.ServiceDefaults.csproj -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/.dockerignore -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/App.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Components/Confirmation.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Components/Confirmation.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Components/Input.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Components/Input.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Constants/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Constants/Interface.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Constants/Participants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Constants/Participants.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Dockerfile -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Models/CacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Models/CacheItem.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Models/Message.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Models/Product.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Models/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Models/Session.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Models/UserParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Models/UserParameters.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Options/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Options/Chat.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Options/CosmosDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Options/CosmosDb.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Options/OpenAi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Options/OpenAi.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/ChatPane.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/ChatPane.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/Index.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/NavMenu.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Program.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Services/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Services/ChatService.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Services/CosmosDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Services/CosmosDbService.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Services/SemanticKernelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Services/SemanticKernelService.cs -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/_Imports.razor -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/appsettings.json -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/cosmos-copilot.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/cosmos-copilot.WebApp.csproj -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/nuget.config -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/cosmos-copilot.WebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.WebApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/cosmos-copilot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureCosmosDB/cosmosdb-nosql-copilot/HEAD/src/cosmos-copilot.sln --------------------------------------------------------------------------------