namespace AIStudio.Provider;
///
/// A contract for a streamed response line that may contain content and annotations.
///
public interface IResponseStreamLine : IAnnotationStreamLine
{
///
/// Checks if the response line contains any content.
///
/// True when the response line contains content, false otherwise.
public bool ContainsContent();
///
/// Gets the content of the response line.
///
/// The content of the response line.
public ContentStreamChunk GetContent();
}