-
Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathUseIChatClient.razor
37 lines (31 loc) · 1.02 KB
/
UseIChatClient.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@page "/useichatclient"
@using Microsoft.Extensions.AI
@inject IChatClient aiClient
@inject ILogger<Home> logger
@inject IConfiguration configuration
<div class="storybox" style="margin: 25%">
@foreach (var message in chatMessages.Where(m => m.Role == ChatRole.Assistant))
{
<p style="font-size: 3em;">@message.Text</p>
}
<button @onclick="GenerateNextParagraph" autofocus>Generate</button>
</div>
@code {
private List<ChatMessage> chatMessages = new List<ChatMessage>
{
new(ChatRole.System, "Pick a random topic and write a sentence of a fictional story about it.")
};
private async Task GenerateNextParagraph()
{
if (chatMessages.Count > 1)
{
chatMessages.Add(new (ChatRole.User, "Write the next sentence in the story."));
}
var response = await aiClient.CompleteAsync(chatMessages);
chatMessages.Add(response.Message);
}
protected override async Task OnInitializedAsync()
{
await GenerateNextParagraph();
}
}