Skip to content

Chat History not updated in example #46054

Description

@RyanGaudion

Type of issue

Code doesn't work

Description

In the Chat History example the code looks like this

List<ChatMessage> chatHistory = [];
while (true)
{
Console.Write("Q: ");
chatHistory.Add(new(ChatRole.User, Console.ReadLine()));
List<ChatResponseUpdate> updates = [];
await foreach (ChatResponseUpdate update in
client.GetStreamingResponseAsync(history))
{
Console.Write(update);
}
Console.WriteLine();
chatHistory.AddMessages(updates);
}

But inside the foreach loop it also need updates.Add(update); as otherwise updates is always empty.

Page URL

https://learn.microsoft.com/en-us/dotnet/ai/microsoft-extensions-ai

Content source URL

https://github.com/dotnet/docs/blob/main/docs/ai/microsoft-extensions-ai.md

Document Version Independent Id

cb3eee6d-484d-9272-a1d2-f7ca68c7d692

Platform Id

b572fc72-7cdd-bd64-3be6-5a42e8fd1b2b

Article author

@IEvangelist

Metadata

  • ID: d1cc84d6-5b78-1d9f-1f35-3631b1a6d3f1
  • PlatformId: b572fc72-7cdd-bd64-3be6-5a42e8fd1b2b
  • Service: dotnet
  • Sub-service: intelligent-apps

Related Issues

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Type

No type

Projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions