Enum WritingTone
Writing tone options.
public enum WritingTone
Fields
Professional = 0Professional and business-like.
Casual = 1Casual and relaxed.
Formal = 2Formal and structured.
Conversational = 3Conversational and natural.
Persuasive = 4Persuasive and compelling.
Informative = 5Informative and educational.
Humorous = 6Humorous and entertaining.
Examples
Setting a writing-agent template's tone:
using LMKit.Agents.Templates;
var writer = new WritingAgentTemplate { Tone = WritingTone.Conversational };