Enum EditType
Types of editing to perform.
public enum EditType
Fields
ProofreadOnly = 0Fix only typos and obvious errors.
ProofreadAndCorrect = 1Fix errors plus grammar and punctuation.
LineEdit = 2Improve sentences and word choice.
CopyEdit = 3Comprehensive editing for style and consistency.
Rewrite = 4Substantial rewriting for improvement.
ToneAdjust = 5Adjust tone while preserving content.
Examples
Selecting a copy-edit pass that improves style and consistency:
using LMKit.Agents.Templates;
var editor = new EditingAgentTemplate { Type = EditType.CopyEdit };