mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-12 04:09:06 +00:00
7 lines
285 B
C#
7 lines
285 B
C#
namespace AIStudio.Tools.ERIClient.DataModel;
|
|
|
|
/// <summary>
|
|
/// A chat thread, which is a list of content blocks.
|
|
/// </summary>
|
|
/// <param name="ContentBlocks">The content blocks in this chat thread.</param>
|
|
public readonly record struct ChatThread(List<ContentBlock> ContentBlocks); |