From 40cfb77cb3c0bf869cd723dad7d64571f4aa838f Mon Sep 17 00:00:00 2001 From: Nils Kruthoff Date: Mon, 27 Jul 2026 19:37:10 +0200 Subject: [PATCH] added a media type to image data to distingush between .png and .jpg images for documents --- app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs b/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs index 9cc85eab..b036fe02 100644 --- a/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs +++ b/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs @@ -15,4 +15,7 @@ public sealed class ContentStreamPptxImageData [JsonPropertyName("is_end")] public bool IsEnd { get; init; } -} \ No newline at end of file + + [JsonPropertyName("media_type")] + public string? MediaType { get; init; } +}