namespace AIStudio.Tools;
/// 
/// Data model for a source used in the response.
/// 
public interface ISource
{
    /// 
    /// The title of the source.
    /// 
    public string Title { get; }
    
    /// 
    /// The URL of the source.
    /// 
    public string URL { get; }
    
    /// 
    /// The origin of the source, whether it was provided by the AI or by the RAG process.
    /// 
    public SourceOrigin Origin { get; }
}