mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 11:59:48 +00:00
9 lines
457 B
C#
9 lines
457 B
C#
namespace AIStudio.Agents;
|
|
|
|
/// <summary>
|
|
/// Represents the result of a retrieval context validation.
|
|
/// </summary>
|
|
/// <param name="Decision">Whether the retrieval context is useful or not.</param>
|
|
/// <param name="Reason">The reason for the decision.</param>
|
|
/// <param name="Confidence">The confidence of the decision.</param>
|
|
public readonly record struct RetrievalContextValidationResult(bool Decision, string Reason, float Confidence) : IConfidence; |