Table of Contents

Enum FormalityLevel

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

Formality levels for translation.

public enum FormalityLevel

Fields

VeryFormal = 0

Very formal, official.

Formal = 1

Formal, professional.

Neutral = 2

Neutral, standard.

Informal = 3

Informal, friendly.

Casual = 4

Casual, colloquial.

Examples

Translating with a neutral register suitable for general audiences:

using LMKit.Agents.Templates;

var translator = new TranslationAgentTemplate { Formality = FormalityLevel.Neutral };

Share