Skip to content

Commit c5f07e7

Browse files
committed
fixed indenting
1 parent fe5cd94 commit c5f07e7

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

articles/ai-foundry/how-to/develop/vs-code-agents.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -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

323323
1. Run the application using the following commands:
324324
```bash

0 commit comments

Comments
 (0)