mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 06:42:17 +00:00
25 lines
686 B
C#
25 lines
686 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Classifies source coverage reported by the content stage.
|
||
|
|
/// </summary>
|
||
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingSourceCoverageKind>))]
|
||
|
|
public enum VisualBriefingSourceCoverageKind
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The source directly contributed facts to the briefing.
|
||
|
|
/// </summary>
|
||
|
|
USED,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The source supplied context without directly contributing visible facts.
|
||
|
|
/// </summary>
|
||
|
|
CONTEXTUAL,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The source is intentionally outside the scope requested by the user.
|
||
|
|
/// </summary>
|
||
|
|
OUT_OF_SCOPE,
|
||
|
|
}
|