namespace AIStudio.Provider;
///
/// A contract for a line in a response stream that can provide annotations such as sources.
///
public interface IAnnotationStreamLine
{
///
/// Checks if the response line contains any sources.
///
/// True when the response line contains sources, false otherwise.
public bool ContainsSources();
///
/// Gets the sources of the response line.
///
/// The sources of the response line.
public IList GetSources();
}