Class ValidationSummary
- Namespace
- AiDotNet.PromptEngineering.Analysis
- Assembly
- AiDotNet.dll
Summary of validation results.
public class ValidationSummary
- Inheritance
-
ValidationSummary
- Inherited Members
Properties
ErrorCount
Gets or sets the count of errors found.
public int ErrorCount { get; set; }
Property Value
InfoCount
Gets or sets the count of informational issues found.
public int InfoCount { get; set; }
Property Value
IsValid
Gets or sets whether the prompt passed validation (no errors).
public bool IsValid { get; set; }
Property Value
Issues
Gets or sets the list of all issues.
public IReadOnlyList<PromptIssue> Issues { get; set; }
Property Value
TotalCount
Gets or sets the total count of all issues.
public int TotalCount { get; }
Property Value
WarningCount
Gets or sets the count of warnings found.
public int WarningCount { get; set; }