string input = """ Can you help me edit the following text: I like to write very complex sentences with lots of jargan and big words. I hope you can help me make it easier to understand. """; groupChat.AddChatMessage(new ChatMessageContent(AuthorRole.User, input)); Console.WriteLine($"# {AuthorRole.User}: '{input}'"); await foreach (var content in groupChat.InvokeAsync()) { Console.WriteLine($"# {content.Role} - {content.AuthorName ?? "*"}: '{content.Content}'"); }