Skip to content

Commit 0e12354

Browse files
author
Maryanne Gichohi
committed
Remove the extra space
1 parent 8caf374 commit 0e12354

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

articles/azure-app-configuration/quickstart-chat-completion-dotnet.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,10 @@ In this guide, you build an AI chat application and iterate on the prompt using
9494
```csharp
9595
// Initialize the AzureOpenAIClient
9696
var apiKey = configuration["ChatLLM:ApiKey"];
97-
9897
AzureOpenAIClient client = new AzureOpenAIClient(new Uri(openAIEndpoint), new AzureKeyCredential(apiKey));
9998
```
10099
101-
If the key _ChatLLM:ApiKey_ is a Key Vault reference in App Configuration, make sure to add the following code snippet to the `AddAzureAppConfiguration` call and [grant your app access to Key Vault](./use-key-vault-references-dotnet-core.md#grant-your-app-access-to-key-vault)
100+
If the key _ChatLLM:ApiKey_ is a Key Vault reference in App Configuration, make sure to add the following code snippet to the `AddAzureAppConfiguration` call and [grant your app access to Key Vault](./use-key-vault-references-dotnet-core.md#grant-your-app-access-to-key-vault).
102101
103102
```cshrap
104103
options.ConfigureKeyVault(keyVaultOptions =>

0 commit comments

Comments
 (0)