Skip to content

Commit 98ee040

Browse files
author
Maryanne Gichohi
committed
Updated to include link to sample source code
1 parent 88b1ee4 commit 98ee040

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.collection: ce-skilling-ai-copilot
1717

1818
# Use chat completion configuration in a .NET console app
1919

20-
In this guide, you build an AI chat application and iterate on the prompt using chat completion configuration dynamically loaded from Azure App Configuration.
20+
In this guide, you build an AI chat application and iterate on the prompt using chat completion configuration dynamically loaded from Azure App Configuration. Full [sample source code](https://github.com/Azure/AppConfiguration/tree/main/examples/DotNetCore/ChatApp) available.
2121

2222
## Prerequisites
2323

@@ -197,7 +197,7 @@ In this guide, you build an AI chat application and iterate on the prompt using
197197
// Get AI response and add it to chat conversation
198198
var response = await chatClient.CompleteChatAsync(chatMessages, requestOptions);
199199
string aiResponse = response.Value.Content[0].Text;
200-
200+
201201
Console.WriteLine($"AI: {aiResponse}");
202202
chatConversation.Add(ChatMessage.CreateAssistantMessage(aiResponse));
203203
@@ -366,7 +366,7 @@ In this guide, you build an AI chat application and iterate on the prompt using
366366
- Role: **system**
367367
- Content: "You are a pirate and your name is Eddy."
368368
369-
1. Type your message when prompted with "You:". Be sure to wait a few moments for the refresh interval to elapse, and then press the Enter key to see the updated AI response in the output
369+
1. Type your message when prompted with "You:". Be sure to wait a few moments for the refresh interval to elapse, and then press the Enter key to see the updated AI response in the output.
370370
371371
```Output
372372
Chat started! What's on your mind?

0 commit comments

Comments
 (0)