Table of Contents

Enum ReviewSeverity

Namespace
LMKit.Agents.Templates
Assembly
LM-Kit.NET.dll

Severity levels for review findings.

public enum ReviewSeverity

Fields

Info = 0

Informational note.

Minor = 1

Minor suggestion.

Moderate = 2

Moderate issue.

Major = 3

Major issue requiring attention.

Critical = 4

Critical issue that must be addressed.

Examples

Filtering review findings to only majors and criticals:

using LMKit.Agents.Templates;

IEnumerable<ReviewFinding> blockers = findings.Where(f => f.Severity >= ReviewSeverity.Major);

Share