mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-09 11:40:20 +00:00
15 lines
396 B
C#
15 lines
396 B
C#
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
|
|
} |