Table of Contents

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

int

InfoCount

Gets or sets the count of informational issues found.

public int InfoCount { get; set; }

Property Value

int

IsValid

Gets or sets whether the prompt passed validation (no errors).

public bool IsValid { get; set; }

Property Value

bool

Issues

Gets or sets the list of all issues.

public IReadOnlyList<PromptIssue> Issues { get; set; }

Property Value

IReadOnlyList<PromptIssue>

TotalCount

Gets or sets the total count of all issues.

public int TotalCount { get; }

Property Value

int

WarningCount

Gets or sets the count of warnings found.

public int WarningCount { get; set; }

Property Value

int