mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 22:01:36 +00:00
25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
|
|
namespace AIStudio.Chat;
|
|||
|
|
|
|||
|
|
public static class ListContentBlockExtensions
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Processes a list of content blocks by transforming them into a collection of message results asynchronously.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="blocks">The list of content blocks to process.</param>
|
|||
|
|
/// <param name="transformer">A function that transforms each content block into a message result asynchronously.</param>
|
|||
|
|
/// <typeparam name="TResult">The type of the result produced by the transformation function.</typeparam>
|
|||
|
|
/// <returns>An asynchronous task that resolves to a list of transformed results.</returns>
|
|||
|
|
public static async Task<IList<TResult>> BuildMessages<TResult>(this List<ContentBlock> blocks, Func<ContentBlock, Task<TResult>> transformer)
|
|||
|
|
{
|
|||
|
|
var messages = blocks
|
|||
|
|
.Where(n => n.ContentType is ContentType.TEXT && !string.IsNullOrWhiteSpace((n.Content as ContentText)?.Text))
|
|||
|
|
.Select(transformer)
|
|||
|
|
.ToList();
|
|||
|
|
|
|||
|
|
// Await all messages:
|
|||
|
|
await Task.WhenAll(messages);
|
|||
|
|
|
|||
|
|
// Select all results:
|
|||
|
|
return messages.Select(n => n.Result).ToList();
|
|||
|
|
}
|
|||
|
|
}
|