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