mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-19 15:12:11 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
64 lines
2.3 KiB
C#
64 lines
2.3 KiB
C#
using System.Text;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
/// <summary>
|
|
/// Buffers only the active document page so that its image segments can follow
|
|
/// the page Markdown without retaining the complete document in memory.
|
|
/// </summary>
|
|
public sealed class DocumentManager
|
|
{
|
|
private StringBuilder? currentPageContent;
|
|
|
|
public string? AddPage(ContentStreamDocumentMetadata metadata, string? content, bool extractImages)
|
|
{
|
|
var pageNumber = metadata.Document?.PageNumber ?? 0;
|
|
if (pageNumber == 0)
|
|
return content;
|
|
|
|
var image = metadata.Document?.Image;
|
|
if (image is null)
|
|
{
|
|
var completedPage = this.Flush();
|
|
this.currentPageContent = new StringBuilder();
|
|
|
|
//
|
|
// A Word or OpenDocument file carries no fixed page layout, so the runtime derives these
|
|
// boundaries from page breaks and heuristics. We note the estimate as a comment rather
|
|
// than as a heading: a heading would sit on the same level as the document's own first
|
|
// level headings, leaving the AI unable to tell the structure of the document apart from
|
|
// our boundaries. The presentation reader marks its slides the same way.
|
|
//
|
|
this.currentPageContent.AppendLine($"<!-- Estimated page {pageNumber} -->");
|
|
this.currentPageContent.AppendLine();
|
|
this.currentPageContent.Append(content);
|
|
return completedPage;
|
|
}
|
|
|
|
if (!extractImages || this.currentPageContent is null || string.IsNullOrWhiteSpace(image.Id))
|
|
return null;
|
|
|
|
if (ContentStreamSseHandler.ProcessImageSegment(image.Id, image))
|
|
{
|
|
var markdownImage = ContentStreamSseHandler.BuildImageMarkdown(image.Id, image.MediaType);
|
|
if (markdownImage is not null)
|
|
{
|
|
this.currentPageContent.AppendLine();
|
|
this.currentPageContent.AppendLine(markdownImage);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public string? Flush()
|
|
{
|
|
if (this.currentPageContent is null)
|
|
return null;
|
|
|
|
var result = this.currentPageContent.ToString();
|
|
this.currentPageContent = null;
|
|
return string.IsNullOrWhiteSpace(result) ? null : result;
|
|
}
|
|
}
|