mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 17:41:36 +00:00
6 lines
209 B
C#
6 lines
209 B
C#
|
|
namespace AIStudio.Chat;
|
||
|
|
|
||
|
|
public static class ListFileAttachmentExtensions
|
||
|
|
{
|
||
|
|
public static bool ContainsImages(this List<FileAttachment> attachments) => attachments.Any(attachment => attachment.IsImage);
|
||
|
|
}
|