diff --git a/app/MindWork AI Studio/Chat/ContentImage.cs b/app/MindWork AI Studio/Chat/ContentImage.cs index a6f385b8..4c162cac 100644 --- a/app/MindWork AI Studio/Chat/ContentImage.cs +++ b/app/MindWork AI Studio/Chat/ContentImage.cs @@ -32,7 +32,7 @@ public sealed class ContentImage : IContent, IImageSource public List Sources { get; set; } = []; /// - public List FileAttachments { get; set; } = []; + public List FileAttachments { get; set; } = []; /// public Task CreateFromProviderAsync(IProvider provider, Model chatModel, IContent? lastUserPrompt, ChatThread? chatChatThread, CancellationToken token = default) diff --git a/app/MindWork AI Studio/Chat/ContentText.cs b/app/MindWork AI Studio/Chat/ContentText.cs index c697a03d..ea494ea2 100644 --- a/app/MindWork AI Studio/Chat/ContentText.cs +++ b/app/MindWork AI Studio/Chat/ContentText.cs @@ -42,7 +42,7 @@ public sealed class ContentText : IContent public List Sources { get; set; } = []; /// - public List FileAttachments { get; set; } = []; + public List FileAttachments { get; set; } = []; /// public async Task CreateFromProviderAsync(IProvider provider, Model chatModel, IContent? lastUserPrompt, ChatThread? chatThread, CancellationToken token = default) diff --git a/app/MindWork AI Studio/Chat/IContent.cs b/app/MindWork AI Studio/Chat/IContent.cs index 883a1b6c..dea453f8 100644 --- a/app/MindWork AI Studio/Chat/IContent.cs +++ b/app/MindWork AI Studio/Chat/IContent.cs @@ -50,10 +50,10 @@ public interface IContent /// /// Represents a collection of file attachments associated with the content. - /// This property contains a list of file paths that are appended + /// This property contains a list of file attachments that are appended /// to the content to provide additional context or resources. /// - public List FileAttachments { get; set; } + public List FileAttachments { get; set; } /// /// Uses the provider to create the content.