AI-Studio/app/MindWork AI Studio/Provider/NoChatCompletionAnnotationStreamLine.cs

15 lines
403 B
C#
Raw Normal View History

2025-09-03 08:08:04 +00:00
namespace AIStudio.Provider;
/// <summary>
/// A marker record indicating that no chat completion annotation line is expected in that stream.
/// </summary>
public sealed record NoChatCompletionAnnotationStreamLine : IAnnotationStreamLine
{
#region Implementation of IAnnotationStreamLine
public bool ContainsSources() => false;
public IList<ISource> GetSources() => [];
#endregion
}