AI-Studio/app/MindWork AI Studio/Tools/ContentStreamSseEvent.cs
Paul Koudelka c7b42bee96
Added local RAG (#756)
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-09-09 18:43:37 +02:00

18 lines
452 B
C#

using System.Text.Json.Serialization;
namespace AIStudio.Tools;
public sealed class ContentStreamSseEvent
{
[JsonPropertyName("content")]
public string? Content { get; init; }
[JsonPropertyName("stream_id")]
public string? StreamId { get; init; }
[JsonPropertyName("metadata")]
public ContentStreamSseMetadata? Metadata { get; init; }
[JsonPropertyName("token_count")]
public int? TokenCount { get; init; }
}