Contoso Chat Retail with .NET and Semantic Kernel
Samples in JavaScript, Python, and Java. Learn more at https://aka.ms/azai.
Table of Contents
- What is this sample?
- Features
- Architecture Diagram
- Getting Started
- Prerequisites
- Deploy
- Hit the API
- Costs
- Security Guidelines
- Resources
- Troubleshooting
- Contributing
What is this sample?
In this sample, we present Contoso Outdoors, a conceptual store specializing in outdoor gear for hiking and camping enthusiasts. This virtual store enhances customer engagement and sales support through an intelligent chat agent. This agent is powered by the Retrieval Augmented Generation (RAG) pattern within the Microsoft Azure AI Stack, enriched with Semantic Kernel and Prompty support.
Artificial Intelligence integrates into the customer service experience, offering responses that are not only relevant but also personalized, drawing from the extensive product catalog and individual customer purchase histories.
For our web application, we are using .NET Stack, and AZD, for an easy and quick deploy.
This sample uses the Azure AI. It leverages Azure OpenAI to our chat features and Semantic Kernel to manage and insert the prompt into our code, and to evaluate prompt/LLM performance.
Contoso Chat .NET shows you how to:
- Build a retail copilot application using the RAG pattern.
- Ideate & iterate on application using Semantic Kernel and Prompty.
- Build & manage the solution using the Azure AI platform & tools.
- Provision & deploy the solution using the Azure Developer CLI.
- Support Responsible AI practices with evaluation & content safety.
Features
The project comes with:
- Sample model configurations, evaluation prompts, and Prompty assets (to simplify prompt creation & iteration) for a RAG-based copilot application
- Sample product and customer data for retail application scenario
- Sample application code for copilot chat and evaluation functions
- Sample azd-template configuration for managing application on Azure
The sample is also a signature application for demonstrating the new capabilities of the Azure AI platform. Expect regular updates to showcase cutting-edge features and best practices for generative AI development.
Architecture Diagram
Getting Started
Quickstart with Codespaces
The recommended option!
Fork the repo into your personal profile.
In your fork, click the green Code button on the repository
Select the
Codespaces
tab and clickCreate codespace...
This should open a new browser tab with a Codespaces container setup process running.
On completion, this will launch a Visual Studio Code editor in the browser, with all relevant dependencies already installed in the running development container beneath.
Congratulations! Your cloud dev environment is ready!
Once you've launched Codespaces you can proceed to Deploy in Step 2.
Prerequisites
Azure Account
IMPORTANT: In order to deploy and run this example, you'll need:
- Azure account. If you're new to Azure, get an Azure account for free and you'll get some free Azure credits to get started. See guide to deploying with the free trial.
- Azure subscription with access enabled for the Azure OpenAI service. You can request access with this form. If your access request to Azure OpenAI service doesn't match the acceptance criteria, you can use OpenAI public API instead. Learn how to switch to an OpenAI instance.
- Ability to deploy these models -
gpt-35-turbo
,gpt-4
,text-embeddings-ada-002
- We recommend using Sweden Central or East US 2
- Ability to deploy these models -
- Azure account permissions:
- Your Azure account must have
Microsoft.Authorization/roleAssignments/write
permissions, such as Role Based Access Control Administrator, User Access Administrator, or Owner. If you don't have subscription-level permissions, you must be granted RBAC for an existing resource group and deploy to that existing group. - Your Azure account also needs
Microsoft.Resources/deployments/write
permissions on the subscription level.
- Your Azure account must have
- Ability to provision Azure AI Search (Paid) - Required for Semantic Ranker
- We recommend using East US 2
- Ability to provision Azure Monitor (Free tier)
- Ability to deploy to Azure Container Apps (Free tier)
AZD
- Install azd
- Windows:
winget install microsoft.azd
- Linux:
curl -fsSL https://aka.ms/install-azd.sh | bash
- MacOS:
brew tap azure/azd && brew install azd
- Windows:
Deploy
Step 1: Development Environment
The repository is instrumented with a devcontainer.json configuration that can provide you with a pre-built environment that can be launched locally, or in the cloud. You can also elect to do a manual environment setup locally, if desired. Here are the three options in increasing order of complexity and effort on your part.
Pick one!
- Pre-built environment, in cloud with GitHub Codespaces, described in the Quickstart.
- Pre-built environment, on device with Docker Desktop
- Manual setup environment, on device with .NET and NuGet installed
The first approach is recommended for minimal user effort in startup and maintenance. The third approach will require you to manually update or maintain your local environment, to reflect any future updates to the repo.
To setup the development environment you can leverage either GitHub Codespaces, a local .NET with NuGet environment (using Anaconda or venv), or a VS Code Dev Container environment (using Docker).
Step 1.1: Pre-Built Environment, in cloud (Docker)
This option uses the same devcontainer.json
configuration, but launches the development container in your local device using Docker Desktop.
To use this approach, you need to have the following tools pre-installed in your local device:
- Visual Studio Code (with Dev Containers Extension)
- Docker Desktop (community or free version is fine)
Make sure your Docker Desktop daemon is running on your local device. After this:
- Fork this repo to your personal profile
- Clone that fork to your local device
- Open the cloned repo using Visual Studio Code
- If your Dev Containers extension is installed correctly, you will be prompted to "re-open the project in a container" - just confirm to launch the container locally.
- Alternatively, you may need to trigger this step manually. See the Dev Containers Extension for more information.
Once your project launches in the local Docker desktop container, you should see the Visual Studio Code editor reflect that connection in the status bar (blue icon, bottom left).
Congratulations! Your local dev environment is ready!
Once you've launched your docker container environment you can proceed to step 2.
Step 1.2: Manual Setup Environment on device
In order to run this sample locally you will need to:
If all of the above are correctly installed you can set up your local developer environment as follows.
First, fork the repo, and then clone the code sample locally:
git clone https://github.com/Azure-Samples/chat-rag-openai-csharp-prompty.git
Open the repo in VS Code and navgate to the src directory
cd code . cd ./src/ContosoChatAPI
Install the .NET SDK
Install the newest version of PowerShell
- Open PowerShell and use
winget install --id Microsoft.Powershell --source winget
- Open PowerShell and use
Install the C# Dev Kit in VS Code
- Open the VS Code Extensions tab
- Search for "C# Dev Kit"
- Install the extension
Install the Azure CLI for your device OS
2. Create Azure resources
We setup our development ennvironment in the previous step. In this step, we'll provision Azure resources for our project, ready to use for developing our LLM Application.
2.1 Authenticate with Azure
Start by connecting your Visual Studio Code environment to your Azure account:
- Open the terminal in VS Code and use command
az login
. - Complete the authentication flow.
If you are running within a dev container, use these instructions to login instead:
- Open the terminal in VS Code and use command
az login --use-device-code
- The console message will give you an alphanumeric code
- Navigate to https://microsoft.com/devicelogin in a new tab
- Enter the code from step 2 and complete the flow.
In either case, verify that the console shows a message indicating a successful authentication. Set your subscription in your enviroment with:
az account set -s <SUB_ID>
Congratulations! Your VS Code session is now connected to your Azure subscription!
2.2 Provision with Azure Developer CLI
For this project, we need to provision multiple Azure resources in a specific order. Before, we achieved this by running the provision.sh
script. Now, we'll use the Azure Developer CLI (or azd
) instead, and follow the steps below.
Visit the azd reference for more details on tool syntax, commands and options.
2.2.1 Install azd
- If you setup your development environment manually, follow these instructions to install
azd
for your local device OS. - If you used a pre-built dev container environment (e.g., GitHub Codespaces or Docker Desktop) the tool is pre-installed for you.
- Verify that the tool is installed by typing
azd version
in a terminal.
2.2.2 Authenticate with Azure
- Start the authentication flow from a terminal:
azd auth login
- This should activate a Device Code authentication flow as shown below. Just follow the instructions and complete the auth flow till you get the
Logged in on Azure
message indicating success.Start by copying the next code: <code-here> Then press enter and continue to log in from your browser...
2.2.3 Provision and Deploy
Run this unified command to provision all resources. This will take a non-trivial amount of time to complete.
azd up
After this, you will be prompted for the subscription you want you use and the region. The bicep parameters declare two location fields: the first one is the primary location for all resources, the second is a location field specifically for where the OpenAI resource should be created.
On completion, it automatically invokes a
postprovision.sh
script, that will be located in theinfra/hooks
folder. This will attempt to log you into Azure. You may see something like this. Just follow the provided instructions to complete the authentication flow.No Azure user signed in. Please login.
Once logged in, the script will do the following for you:
- Create the
.azure/<env>/config.json
in the local device - Populate
.azure/<env>/.env
with required environment variables - Populate your data (in Azure AI Search, Azure CosmosDB)
- Create relevant Connections (for prompt flow)
- Upload your prompt flow to Azure (for deployment)
- Create the
That's it! You should now be ready to continue the process as before. Note that this is a new process so there may be some issues to iron out. Start by completing the verification steps below and taking any troubleshooting actions identified.
2.2.4 Verify Provisioning
The script should set up a dedicated resource group with the following resources:
- Azure AI services resource
- Azure Machine Learning workspace (Azure AI Project) resource
- Search service (Azure AI Search) resource
- Bing Search (Bing Search) resource
The script will set up an Azure AI Studio project with the following model deployments created by default, in a relevant region that supports them. Your Azure subscription must be enabled for Azure OpenAI access.
- gpt-3.5-turbo
- text-embeddings-ada-002
- gpt-4
The Azure AI Search resource will have Semantic Ranker enabled for this project, which requires the use of a paid tier of that service. It may also be created in a different region, based on availability of that feature.
2.3 Add endpoints to the .NET Application
The project now needs to have access to Azure, to do this, go to .\src\ContosoChatAPI\ContosoChatAPI\appsettings.json
and change the following variables. Use the \.azure\<env-name>\.env
for your endpoints.
- .env -> appsettings.json
- APPINSIGHTS_CONNECTIONSTRING ->
ApplicationInsights -> ConnectionString
- AZURE_OPENAI_ENDPOINT`->
OpenAi -> Endpoint
- CosmosDb__Endpoint ->
CosmosDb -> Endpoint
- AzureAISearch__Endpoint ->
AzureAISearch -> Endpoint
3. Running the application
First, you will need to navegate in the console to our folder in ContosoChat, use the following cd .\src\ContosoChatAPI\
.
After this, we need to restore our dotNet packages to build our solution, we can use dotnet restore
. To build our .dll
from solution, use dotnet build
, it will report two dlls being created, the test and the main one.
To execute our solution use dotnet run --project .\ContosoChatAPI\ContosoChatAPI.csproj
. This will run our solution, which will make available our API to test and connect from our data collection located in chat.json
.
To the Swagger endpoint, use the application on http://localhost:5282/swagger/
. For codespaces, take the URL and add the /swagger/
to it.
3.1 Using the aplication with Swagger
When opening the page to Swagger, you may look on the following page.
Click on Try it out
, then, test with the following parameters:
- customerId: `3`
- question: `Can what can you tell me about the jackets?`
After seding the information, will send with the RAG pattern to Azure, which sends the client information, the question and some store data. Getting back a answer to the chat. An example of it, can be:
Answer: Sure, Michael! Let me tell you about our jackets. One of our popular jackets is the Summit Breeze Jacket (catalog id 23). It's a lightweight and windproof jacket with a water-resistant fabric. It's perfect for outdoor adventures and comes in a sleek black color. 🌬️🧥
If you're interested in jackets, you might also like the TrailWalker Hiking Shoes (catalog id 5) for a complete outdoor outfit. These shoes are rugged, waterproof, and provide excellent grip. They will keep your feet comfortable and protected during your hikes. 👟🏔️
Let me know if you need any more information!
4. Hit the Deployed API
- Navigate to Azure portal and get the endpoint from Azure Container Apps deployment
- Post to the api endpoint with the
customerId
andquestion
curl -v --header "Content-Type: application/json" \
--request POST \
--data '{"customerId":"3","question":"Tell me about your jackets?"}' \
http://<aca-url>/ContosoChat
Costs
You can estimate the cost of this project's architecture with Azure's pricing calculator
- Azure OpenAI - Standard tier, GPT-4, GPT-35-turbo and Ada models. See Pricing
- Azure AI Search - Basic tier, Semantic Ranker enabled See Pricing
- Azure Cosmos DB for NoSQL - Serverless, Free Tier See Pricing
- Azure Monitor - Serverless, Free Tier See Pricing
- Azure Container Apps - Severless, Free Tier See Pricing
Security Guidelines
This template uses Managed Identity or Key Vault to eliminate the need for developers to manage credentials. Applications can use managed identities to obtain Microsoft Entra tokens without having to manage any credentials.
Additionally, we have added a GitHub Action tool that scans the infrastructure-as-code files and generates a report containing any detected issues.
To ensure best security practices in your repo, we recommend anyone creating solutions based on our templates ensure that the Github secret scanning setting is enabled in your repos.
Resources
- Take a look on more .NET AI Samples.
- Learn more .NET AI with Microsoft Learn
- Learn Azure, deploying in GitHub!
Troubleshooting
Have questions or issues to report? Please open a new issue after first verifying that the same question or issue has not already been reported. In the latter case, please add any additional comments you may have, to the existing issue.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.