mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 19:01:36 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Co-authored-by: Thorsten Sommer
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();
|
|
}
|
|
} |