mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 01:22:57 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (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) (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 deb updater) (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 updater) (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) (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 deb updater) (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
68 lines
2.4 KiB
C#
68 lines
2.4 KiB
C#
using System.Text;
|
|
using System.Text.Json;
|
|
|
|
namespace AIStudio.Tools.Services;
|
|
|
|
public sealed partial class RustService
|
|
{
|
|
public async Task<string> ReadArbitraryFileData(string path, int maxChunks, bool extractImages = false)
|
|
{
|
|
var streamId = Guid.NewGuid().ToString();
|
|
var requestUri = $"/retrieval/fs/extract?path={Uri.EscapeDataString(path)}&stream_id={streamId}&extract_images={extractImages}";
|
|
var request = new HttpRequestMessage(HttpMethod.Get, requestUri);
|
|
var response = await this.http.SendAsync(request, HttpCompletionOption.ResponseHeadersRead);
|
|
|
|
if (!response.IsSuccessStatusCode)
|
|
return string.Empty;
|
|
|
|
var resultBuilder = new StringBuilder();
|
|
|
|
try
|
|
{
|
|
await using var stream = await response.Content.ReadAsStreamAsync();
|
|
using var reader = new StreamReader(stream);
|
|
var chunkCount = 0;
|
|
|
|
while (!reader.EndOfStream && chunkCount < maxChunks)
|
|
{
|
|
var line = await reader.ReadLineAsync();
|
|
if (string.IsNullOrWhiteSpace(line))
|
|
continue;
|
|
|
|
if (!line.StartsWith("data:", StringComparison.InvariantCulture))
|
|
continue;
|
|
|
|
var jsonContent = line[5..];
|
|
|
|
try
|
|
{
|
|
var sseEvent = JsonSerializer.Deserialize<ContentStreamSseEvent>(jsonContent);
|
|
if (sseEvent is not null)
|
|
{
|
|
var content = ContentStreamSseHandler.ProcessEvent(sseEvent, extractImages);
|
|
if (content is not null)
|
|
resultBuilder.AppendLine(content);
|
|
|
|
chunkCount++;
|
|
}
|
|
}
|
|
catch (JsonException)
|
|
{
|
|
this.logger?.LogError("Failed to deserialize SSE event: {JsonContent}", jsonContent);
|
|
}
|
|
}
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
this.logger?.LogError(e, "Error reading file data from stream: {Path}", path);
|
|
}
|
|
finally
|
|
{
|
|
var finalContentChunk = ContentStreamSseHandler.Clear(streamId);
|
|
if (!string.IsNullOrWhiteSpace(finalContentChunk))
|
|
resultBuilder.AppendLine(finalContentChunk);
|
|
}
|
|
|
|
return resultBuilder.ToString();
|
|
}
|
|
} |