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

15 lines
396 B
C#
Raw Normal View History

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