namespace AIStudio.Provider;
///
/// A marker record indicating that no chat completion annotation line is expected in that stream.
///
public sealed record NoChatCompletionAnnotationStreamLine : IAnnotationStreamLine
{
#region Implementation of IAnnotationStreamLine
public bool ContainsSources() => false;
public IList GetSources() => [];
#endregion
}