namespace AIStudio.Tools;
///
/// Represents the origin of a source.
///
public enum SourceOrigin
{
///
/// The LLM provided the source.
///
LLM,
///
/// The source was provided by the RAG process.
///
RAG,
///
/// The source was used by a locally executed tool.
///
TOOL,
}