Enum ContentType
Types of content for writing.
public enum ContentType
Fields
Article = 0Informative article.
BlogPost = 1Blog post.
Email = 2Email communication.
SocialMedia = 3Social media content.
Report = 4Formal report.
Marketing = 5Marketing copy.
Technical = 6Technical documentation.
Creative = 7Creative writing.
Examples
Configuring a writing template for blog-post output:
using LMKit.Agents.Templates;
var writer = new WritingAgentTemplate { Type = ContentType.BlogPost };