mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-20 06:20:20 +00:00
17 lines
367 B
C#
17 lines
367 B
C#
|
namespace AIStudio.Tools;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents the origin of a source, whether it was provided by the LLM or by the RAG process.
|
||
|
/// </summary>
|
||
|
public enum SourceOrigin
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The LLM provided the source.
|
||
|
/// </summary>
|
||
|
LLM,
|
||
|
|
||
|
/// <summary>
|
||
|
/// The source was provided by the RAG process.
|
||
|
/// </summary>
|
||
|
RAG,
|
||
|
}
|