Table of Contents

Enum EditType

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

Types of editing to perform.

public enum EditType

Fields

ProofreadOnly = 0

Fix only typos and obvious errors.

ProofreadAndCorrect = 1

Fix errors plus grammar and punctuation.

LineEdit = 2

Improve sentences and word choice.

CopyEdit = 3

Comprehensive editing for style and consistency.

Rewrite = 4

Substantial rewriting for improvement.

ToneAdjust = 5

Adjust 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 };

Share