@@ -294,31 +294,31 @@ Before running locally with `dotnet run`, ensure you have configured the require
294294
295295 1. Configure your environment variables based on your operating system :
296296
297- # ### [Windows (PowerShell)](#tab/windows-powershell)
297+ # ### [Windows (PowerShell)](#tab/windows-powershell)
298298
299- ` ` ` powershell
300- $env:AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com/"
301- $env:MODEL_DEPLOYMENT_NAME="your-deployment-name"
302- $env:AZURE_OPENAI_API_KEY="your-api-key"
303- ` ` `
299+ ` ` ` powershell
300+ $env:AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com/"
301+ $env:MODEL_DEPLOYMENT_NAME="your-deployment-name"
302+ $env:AZURE_OPENAI_API_KEY="your-api-key"
303+ ` ` `
304304
305- # ### [Windows (Command Prompt)](#tab/windows-command-prompt)
305+ # ### [Windows (Command Prompt)](#tab/windows-command-prompt)
306306
307- ` ` ` dos
308- set AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com/
309- set MODEL_DEPLOYMENT_NAME=your-deployment-name
310- set AZURE_OPENAI_API_KEY=your-api-key
311- ` ` `
307+ ` ` ` dos
308+ set AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com/
309+ set MODEL_DEPLOYMENT_NAME=your-deployment-name
310+ set AZURE_OPENAI_API_KEY=your-api-key
311+ ` ` `
312312
313- # ### [macOS/Linux (Bash)](#tab/macos-linux-bash)
313+ # ### [macOS/Linux (Bash)](#tab/macos-linux-bash)
314314
315- ` ` ` bash
316- export AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com/"
317- export MODEL_DEPLOYMENT_NAME="your-deployment-name"
318- export AZURE_OPENAI_API_KEY="your-api-key"
319- ` ` `
315+ ` ` ` bash
316+ export AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com/"
317+ export MODEL_DEPLOYMENT_NAME="your-deployment-name"
318+ export AZURE_OPENAI_API_KEY="your-api-key"
319+ ` ` `
320320
321- ---
321+ ---
322322
3233231. Run the application using the following commands :
324324 ` ` ` bash
0 commit comments