namespace AIStudio.Tools;
///
/// Represents the origin of a source, whether it was provided by the LLM or by the RAG process.
///
public enum SourceOrigin
{
///
/// The LLM provided the source.
///
LLM,
///
/// The source was provided by the RAG process.
///
RAG,
}