AI-Studio/app/MindWork AI Studio/Assistants/Dynamic/FileAttachmentState.cs

9 lines
175 B
C#
Raw Normal View History

using AIStudio.Chat;
namespace AIStudio.Assistants.Dynamic;
public sealed class FileAttachmentState
{
public HashSet<FileAttachment> DocumentPaths { get; set; } = [];
}