mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-24 07:33:36 +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 / Verify (push) Waiting to run
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
74 lines
3.0 KiB
C#
74 lines
3.0 KiB
C#
namespace AIStudio.Tools.Web;
|
|
|
|
/// <summary>
|
|
/// Reads a text document fetched from the web, such as plain text, JSON, XML, or CSV.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The text is returned as the server sent it. There is no main part to extract from a JSON
|
|
/// response, and converting it to Markdown would only take away what the model needs: exact
|
|
/// keys, quotes, and indentation. Only the line endings are unified, and the byte order mark
|
|
/// is dropped, because it is not part of the text.<br/><br/>
|
|
/// The text is not filtered for prompt injections here, just like an extracted HTML page is
|
|
/// not. The callers filter it once they have cut it down to what reaches the model. The
|
|
/// runtime's filter also decodes the escapes of JSON and XML, which a model reads fluently.
|
|
/// </remarks>
|
|
internal static class WebTextContentExtractor
|
|
{
|
|
private const char BYTE_ORDER_MARK = '\uFEFF';
|
|
|
|
/// <summary>
|
|
/// Takes the text of a document. Throws an InvalidOperationException when the body is not
|
|
/// text, whatever the server declared.
|
|
/// </summary>
|
|
/// <param name="body">The response body as text.</param>
|
|
/// <param name="mediaType">The media type the server declared, for the error message.</param>
|
|
/// <param name="finalUrl">Where the document was found after every redirect, for the error message.</param>
|
|
/// <returns>The document, with its text as the content and no metadata.</returns>
|
|
public static ExtractedWebPage Extract(string body, string mediaType, Uri finalUrl)
|
|
{
|
|
//
|
|
// Text holds no NUL characters, while nearly every binary format does. A server naming
|
|
// a PDF or an archive text/plain is common enough, and its bytes decoded as text would
|
|
// reach the model as noise.
|
|
//
|
|
if (body.Contains('\0'))
|
|
throw new InvalidOperationException($"The response of '{finalUrl}' is declared as '{mediaType}' but does not contain readable text.");
|
|
|
|
var text = body
|
|
.TrimStart(BYTE_ORDER_MARK)
|
|
.Replace("\r\n", "\n", StringComparison.Ordinal)
|
|
.Replace('\r', '\n')
|
|
.TrimEnd();
|
|
|
|
// Only blank lines are dropped at the start. The indentation of the first line carries
|
|
// meaning in YAML or in source code:
|
|
text = TrimLeadingBlankLines(text);
|
|
|
|
return new ExtractedWebPage
|
|
{
|
|
Title = string.Empty,
|
|
Description = string.Empty,
|
|
Authors = [],
|
|
PublishedTime = string.Empty,
|
|
ModifiedTime = string.Empty,
|
|
Language = string.Empty,
|
|
SiteName = string.Empty,
|
|
CanonicalUrl = null,
|
|
Markdown = text,
|
|
Outline = [],
|
|
};
|
|
}
|
|
|
|
private static string TrimLeadingBlankLines(string text)
|
|
{
|
|
var start = 0;
|
|
while (true)
|
|
{
|
|
var lineEnd = text.IndexOf('\n', start);
|
|
if (lineEnd < 0 || !string.IsNullOrWhiteSpace(text[start..lineEnd]))
|
|
return text[start..];
|
|
|
|
start = lineEnd + 1;
|
|
}
|
|
}
|
|
} |