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