2025-09-25 17:47:18 +00:00
|
|
|
namespace AIStudio.Tools;
|
2025-08-31 12:27:35 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Data model for a source used in the response.
|
|
|
|
/// </summary>
|
|
|
|
public interface ISource
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The title of the source.
|
|
|
|
/// </summary>
|
|
|
|
public string Title { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The URL of the source.
|
|
|
|
/// </summary>
|
|
|
|
public string URL { get; }
|
2025-09-25 17:47:18 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The origin of the source, whether it was provided by the AI or by the RAG process.
|
|
|
|
/// </summary>
|
|
|
|
public SourceOrigin Origin { get; }
|
2025-08-31 12:27:35 +00:00
|
|
|
}
|